cloud_service_operating_systems_os_versions
Creates, updates, deletes, gets or lists a cloud_service_operating_systems_os_versions
resource.
Overview
Name | cloud_service_operating_systems_os_versions |
Type | Resource |
Id | azure.compute.cloud_service_operating_systems_os_versions |
Fields
- vw_cloud_service_operating_systems_os_versions
- cloud_service_operating_systems_os_versions
Name | Datatype | Description |
---|---|---|
id | text | Resource Id. |
name | text | Resource name. |
family | text | field from the properties object |
family_label | text | field from the properties object |
is_active | text | field from the properties object |
is_default | text | field from the properties object |
label | text | field from the properties object |
location | text | Resource location. |
osVersionName | text | field from the properties object |
subscriptionId | text | field from the properties object |
type | text | Resource type. |
version | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
id | string | Resource Id. |
name | string | Resource name. |
location | string | Resource location. |
properties | object | OS version properties. |
type | string | Resource type. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | location, osVersionName, subscriptionId | Gets properties of a guest operating system version that can be specified in the XML service configuration (.cscfg) for a cloud service. |
list | SELECT | location, subscriptionId | 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
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.
- vw_cloud_service_operating_systems_os_versions
- cloud_service_operating_systems_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 }}';
SELECT
id,
name,
location,
properties,
type
FROM azure.compute.cloud_service_operating_systems_os_versions
WHERE location = '{{ location }}'
AND subscriptionId = '{{ subscriptionId }}';