Skip to main content
FuseFuse
IntegrationsTemporalActions

List Temporal Cloud regions

List Temporal Cloud regions available for namespace placement.

Agent markdown

regions.list · Temporal · v1

Details

Risk
Read
Idempotency
Safe
Availability
Default
Exposure
REST, SDK, MCP
MCP hints
readOnly=true, destructive=false, idempotent=true, openWorld=true

Scopes

None

Input

Input schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false

Output

Output schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
regionsarray<object>YesmaxItems 100
regions[]objectYesadditionalProperties false
regions[].idstringYesminLength 1; maxLength 64
regions[].cloud_providerstringYesenum CLOUD_PROVIDER_UNSPECIFIED | CLOUD_PROVIDER_AWS | CLOUD_PROVIDER_GCP | CLOUD_PROVIDER_AZURE
regions[].cloud_provider_regionstringYesminLength 1; maxLength 64
regions[].locationstringYesmaxLength 200

Raw schema

Input
{
  "type": "object",
  "additionalProperties": false,
  "properties": {}
}
Output
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "regions": {
      "type": "array",
      "items": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
          "id": {
            "type": "string",
            "minLength": 1,
            "maxLength": 64
          },
          "cloud_provider": {
            "type": "string",
            "enum": [
              "CLOUD_PROVIDER_UNSPECIFIED",
              "CLOUD_PROVIDER_AWS",
              "CLOUD_PROVIDER_GCP",
              "CLOUD_PROVIDER_AZURE"
            ]
          },
          "cloud_provider_region": {
            "type": "string",
            "minLength": 1,
            "maxLength": 64
          },
          "location": {
            "type": "string",
            "maxLength": 200
          }
        },
        "required": [
          "id",
          "cloud_provider",
          "cloud_provider_region",
          "location"
        ]
      },
      "maxItems": 100
    }
  },
  "required": [
    "regions"
  ]
}