cloud_services_update_domain_update_domains
Creates, updates, deletes, gets or lists a cloud_services_update_domain_update_domains
resource.
Overview
Name | cloud_services_update_domain_update_domains |
Type | Resource |
Id | azure.compute.cloud_services_update_domain_update_domains |
Fields
Name | Datatype | Description |
---|---|---|
id | string | Resource Id |
name | string | Resource Name |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | cloudServiceName, resourceGroupName, subscriptionId, updateDomain | Gets the specified update domain of a cloud service. Use nextLink property in the response to get the next page of update domains. Do this till nextLink is null to fetch all the update domains. |
list | SELECT | cloudServiceName, resourceGroupName, subscriptionId | Gets a list of all update domains in a cloud service. |
SELECT
examples
Gets a list of all update domains in a cloud service.
SELECT
id,
name
FROM azure.compute.cloud_services_update_domain_update_domains
WHERE cloudServiceName = '{{ cloudServiceName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';