Skip to content

allAzureRegions

Get all available regions for Azure.

Arguments

Argument Type Description
cloudAccountId (required) String! Cloud account ID.

Returns

[AzureCloudAccountRegion!]!

Sample

query AllAzureRegions($cloudAccountId: String!) {
  allAzureRegions(cloudAccountId: $cloudAccountId)
}
{
  "cloudAccountId": "example-string"
}
{
  "data": {
    "allAzureRegions": [
      "AUSTRALIACENTRAL"
    ]
  }
}