Skip to main content

cloud_services_update_domain_update_domains

Creates, updates, deletes, gets or lists a cloud_services_update_domain_update_domains resource.

Overview

Namecloud_services_update_domain_update_domains
TypeResource
Idazure.compute.cloud_services_update_domain_update_domains

Fields

NameDatatypeDescription
idstringResource Id
namestringResource Name

Methods

NameAccessible byRequired ParamsDescription
getSELECTcloudServiceName, resourceGroupName, subscriptionId, updateDomainGets 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.
listSELECTcloudServiceName, resourceGroupName, subscriptionIdGets 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 }}';