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
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 version properties. |
type | string | Resource type. |
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
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional 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. |
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 versions pertain to. |
osVersionName | string | Name of the OS version. |
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 version 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_versions
WHERE location = '{{ location }}' -- required
AND osVersionName = '{{ osVersionName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
;
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,
location,
properties,
type
FROM azure.compute.cloud_service_operating_systems_os_versions
WHERE location = '{{ location }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
;