Skip to main content

supported_operating_systems

Creates, updates, deletes, gets or lists a supported_operating_systems resource.

Overview

Namesupported_operating_systems
TypeResource
Idazure.recovery_services_site_recovery.supported_operating_systems

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringResource Id
namestringResource Name
locationstringResource Location
propertiesobjectThe supported operating systems properties.
typestringResource Type

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectresourceName, resourceGroupName, subscriptionIdapi-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.

NameDatatypeDescription
resourceGroupNamestringThe name of the resource group where the recovery services vault is present.
resourceNamestringThe name of the recovery services vault.
subscriptionIdstringThe subscription Id.
api-versionstringClient Api Version.
instanceTypestringThe instance type.

SELECT examples

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 }}'
;