Skip to main content

cloud_service_operating_systems_os_families

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

Overview

Namecloud_service_operating_systems_os_families
TypeResource
Idazure.compute.cloud_service_operating_systems_os_families

Fields

NameDatatypeDescription
idtextResource Id.
nametextResource name.
labeltextfield from the properties object
locationtextResource location.
osFamilyNametextfield from the properties object
subscriptionIdtextfield from the properties object
typetextResource type.
versionstextfield from the properties object

Methods

NameAccessible byRequired ParamsDescription
getSELECTlocation, osFamilyName, subscriptionIdGets properties of a guest operating system family that can be specified in the XML service configuration (.cscfg) for a cloud service.
listSELECTlocation, subscriptionIdGets a list of all guest operating system families available to be specified in the XML service configuration (.cscfg) for a cloud service. Use nextLink property in the response to get the next page of OS Families. Do this till nextLink is null to fetch all the OS Families.

SELECT examples

Gets a list of all guest operating system families available to be specified in the XML service configuration (.cscfg) for a cloud service. Use nextLink property in the response to get the next page of OS Families. Do this till nextLink is null to fetch all the OS Families.

SELECT
id,
name,
label,
location,
osFamilyName,
subscriptionId,
type,
versions
FROM azure.compute.vw_cloud_service_operating_systems_os_families
WHERE location = '{{ location }}'
AND subscriptionId = '{{ subscriptionId }}';