Skip to main content

cloud_service_operating_systems_os_versions

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

Overview

Namecloud_service_operating_systems_os_versions
TypeResource
Idazure.compute.cloud_service_operating_systems_os_versions

Fields

NameDatatypeDescription
idtextResource Id.
nametextResource name.
familytextfield from the properties object
family_labeltextfield from the properties object
is_activetextfield from the properties object
is_defaulttextfield from the properties object
labeltextfield from the properties object
locationtextResource location.
osVersionNametextfield from the properties object
subscriptionIdtextfield from the properties object
typetextResource type.
versiontextfield from the properties object

Methods

NameAccessible byRequired ParamsDescription
getSELECTlocation, osVersionName, subscriptionIdGets properties of a guest operating system version that can be specified in the XML service configuration (.cscfg) for a cloud service.
listSELECTlocation, subscriptionIdGets a list of all guest operating system versions 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 versions. Do this till nextLink is null to fetch all the OS versions.

SELECT examples

Gets a list of all guest operating system versions 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 versions. Do this till nextLink is null to fetch all the OS versions.

SELECT
id,
name,
family,
family_label,
is_active,
is_default,
label,
location,
osVersionName,
subscriptionId,
type,
version
FROM azure.compute.vw_cloud_service_operating_systems_os_versions
WHERE location = '{{ location }}'
AND subscriptionId = '{{ subscriptionId }}';