Skip to content

allGcpNativeRegions

List of regions available to a GCP project along with zones.

Arguments

Argument Type Description
projectId (required) UUID! ID of the Project.

Returns

[GcpNativeRegion!]!

Sample

query AllGcpNativeRegions($projectId: UUID!) {
  allGcpNativeRegions(projectId: $projectId) {
    name
    zones
  }
}
{
  "projectId": "00000000-0000-0000-0000-000000000000"
}
{
  "data": {
    "allGcpNativeRegions": [
      {
        "name": "example-string",
        "zones": [
          "example-string"
        ]
      }
    ]
  }
}