supported_operating_systems
Creates, updates, deletes, gets or lists a supported_operating_systems resource.
Overview
| Name | supported_operating_systems |
| Type | Resource |
| Id | azure.recovery_services_site_recovery.supported_operating_systems |
Fields
The following fields are returned by SELECT queries:
- get
| Name | Datatype | Description |
|---|---|---|
id | string | Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}. |
name | string | The name of the resource. |
location | string | Resource Location. |
supportedOsList | array | The supported operating systems property list. |
systemData | object | Azure Resource Manager metadata containing createdBy and modifiedBy information. |
type | string | The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts". |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | resource_group_name, resource_name, subscription_id | instanceType | Gets the data of supported operating systems by SRS. Gets the data of supported operating systems by SRS. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
resource_group_name | string | The name of the resource group. The name is case insensitive. Required. |
resource_name | string | The name of the recovery services vault. Required. |
subscription_id | string | |
instanceType | string | The instance type. Default value is None. |
SELECT examples
- get
Gets the data of supported operating systems by SRS. Gets the data of supported operating systems by SRS.
SELECT
id,
name,
location,
supportedOsList,
systemData,
type
FROM azure.recovery_services_site_recovery.supported_operating_systems
WHERE resource_group_name = '{{ resource_group_name }}' -- required
AND resource_name = '{{ resource_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
AND instanceType = '{{ instanceType }}'
;