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 | Resource Id |
name | string | Resource Name |
location | string | Resource Location |
properties | object | The supported operating systems properties. |
type | string | Resource Type |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | resourceName, resourceGroupName, subscriptionId | api-version, instanceType |
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 |
|---|---|---|
resourceGroupName | string | The name of the resource group where the recovery services vault is present. |
resourceName | string | The name of the recovery services vault. |
subscriptionId | string | The subscription Id. |
api-version | string | Client Api Version. |
instanceType | string | The instance type. |
SELECT examples
- get
OK
SELECT
id,
name,
location,
properties,
type
FROM azure.recovery_services_site_recovery.supported_operating_systems
WHERE resourceName = '{{ resourceName }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
AND api-version = '{{ api-version }}'
AND instanceType = '{{ instanceType }}'
;