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
The following fields are returned by SELECT
queries:
- get
- list
Name | Datatype | Description |
---|---|---|
id | string | Resource Id. |
name | string | Resource name. |
location | string | Resource location. |
properties | object | OS family properties. |
type | string | Resource type. |
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
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional 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. |
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.
Name | Datatype | Description |
---|---|---|
location | string | Name of the location that the OS families pertain to. |
osFamilyName | string | Name of the OS family. |
subscriptionId | string | Subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. |
SELECT
examples
- get
- list
Gets properties of a guest operating system family that can be specified in the XML service configuration (.cscfg) for a cloud service.
SELECT
id,
name,
location,
properties,
type
FROM azure.compute.cloud_service_operating_systems_os_families
WHERE location = '{{ location }}' -- required
AND osFamilyName = '{{ osFamilyName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
;
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,
location,
properties,
type
FROM azure.compute.cloud_service_operating_systems_os_families
WHERE location = '{{ location }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
;