cloud_service_operating_systems_os_families
Creates, updates, deletes, gets or lists a cloud_service_operating_systems_os_families
resource.
Overview
Name | cloud_service_operating_systems_os_families |
Type | Resource |
Id | azure.compute.cloud_service_operating_systems_os_families |
Fields
- vw_cloud_service_operating_systems_os_families
- cloud_service_operating_systems_os_families
Name | Datatype | Description |
---|---|---|
id | text | Resource Id. |
name | text | Resource name. |
label | text | field from the properties object |
location | text | Resource location. |
osFamilyName | text | field from the properties object |
subscriptionId | text | field from the properties object |
type | text | Resource type. |
versions | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
id | string | Resource Id. |
name | string | Resource name. |
location | string | Resource location. |
properties | object | OS family properties. |
type | string | Resource type. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | location, osFamilyName, subscriptionId | Gets properties of a guest operating system family 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 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.
- vw_cloud_service_operating_systems_os_families
- cloud_service_operating_systems_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 }}';
SELECT
id,
name,
location,
properties,
type
FROM azure.compute.cloud_service_operating_systems_os_families
WHERE location = '{{ location }}'
AND subscriptionId = '{{ subscriptionId }}';