Skip to main content
FuseFuse
IntegrationsTemporalActions

Get Temporal Cloud namespace

Get one namespace by full namespace id, including retention, auth flags, and resource version.

Agent markdown

namespaces.get · 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
namespacestringYesminLength 2; maxLength 128

Output

Output schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
namespacestringYesminLength 2; maxLength 128
namestringYesminLength 2; maxLength 39; pattern ^[a-z]([a-z0-9-]*[a-z0-9])?$
project_idstringNominLength 1; maxLength 128
statestringYesenum RESOURCE_STATE_UNSPECIFIED | RESOURCE_STATE_ACTIVATING | RESOURCE_STATE_ACTIVATION_FAILED | RESOURCE_STATE_ACTIVE | RESOURCE_STATE_UPDATING | RESOURCE_STATE_UPDATE_FAILED | RESOURCE_STATE_DELETING | RESOURCE_STATE_DELETE_FAILED | RESOURCE_STATE_DELETED | RESOURCE_STATE_SUSPENDED | RESOURCE_STATE_EXPIRED
resource_versionstringYesminLength 1; maxLength 256
retention_daysintegerYesminimum 1; maximum 90
active_regionstringNominLength 1; maxLength 64
async_operation_idstringNominLength 1; maxLength 256
created_atstringNominLength 1; maxLength 64
updated_atstringNominLength 1; maxLength 64
enable_delete_protectionbooleanNo
api_key_auth_enabledbooleanNo
mtls_auth_enabledbooleanNo
endpointsobjectNoadditionalProperties false
endpoints.web_addressstringNomaxLength 512
endpoints.grpc_addressstringNomaxLength 512
endpoints.mtls_grpc_addressstringNomaxLength 512
replicasarray<object>NomaxItems 8
replicas[]objectYesadditionalProperties false
replicas[].idstringNomaxLength 128
replicas[].regionstringYesminLength 1; maxLength 64
replicas[].is_primarybooleanNo
replicas[].statestringNomaxLength 64
tagsarray<object>NomaxItems 64
tags[]objectYesadditionalProperties false
tags[].keystringYesminLength 1; maxLength 63
tags[].valuestringYesminLength 1; maxLength 63

Raw schema

Input
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "namespace": {
      "type": "string",
      "minLength": 2,
      "maxLength": 128
    }
  },
  "required": [
    "namespace"
  ]
}
Output
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "namespace": {
      "type": "string",
      "minLength": 2,
      "maxLength": 128
    },
    "name": {
      "type": "string",
      "minLength": 2,
      "maxLength": 39,
      "pattern": "^[a-z]([a-z0-9-]*[a-z0-9])?$"
    },
    "project_id": {
      "type": "string",
      "minLength": 1,
      "maxLength": 128
    },
    "state": {
      "type": "string",
      "enum": [
        "RESOURCE_STATE_UNSPECIFIED",
        "RESOURCE_STATE_ACTIVATING",
        "RESOURCE_STATE_ACTIVATION_FAILED",
        "RESOURCE_STATE_ACTIVE",
        "RESOURCE_STATE_UPDATING",
        "RESOURCE_STATE_UPDATE_FAILED",
        "RESOURCE_STATE_DELETING",
        "RESOURCE_STATE_DELETE_FAILED",
        "RESOURCE_STATE_DELETED",
        "RESOURCE_STATE_SUSPENDED",
        "RESOURCE_STATE_EXPIRED"
      ]
    },
    "resource_version": {
      "type": "string",
      "minLength": 1,
      "maxLength": 256
    },
    "retention_days": {
      "type": "integer",
      "minimum": 1,
      "maximum": 90
    },
    "active_region": {
      "type": "string",
      "minLength": 1,
      "maxLength": 64
    },
    "async_operation_id": {
      "type": "string",
      "minLength": 1,
      "maxLength": 256
    },
    "created_at": {
      "type": "string",
      "minLength": 1,
      "maxLength": 64
    },
    "updated_at": {
      "type": "string",
      "minLength": 1,
      "maxLength": 64
    },
    "enable_delete_protection": {
      "type": "boolean"
    },
    "api_key_auth_enabled": {
      "type": "boolean"
    },
    "mtls_auth_enabled": {
      "type": "boolean"
    },
    "endpoints": {
      "type": "object",
      "additionalProperties": false,
      "properties": {
        "web_address": {
          "type": "string",
          "maxLength": 512
        },
        "grpc_address": {
          "type": "string",
          "maxLength": 512
        },
        "mtls_grpc_address": {
          "type": "string",
          "maxLength": 512
        }
      }
    },
    "replicas": {
      "type": "array",
      "items": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
          "id": {
            "type": "string",
            "maxLength": 128
          },
          "region": {
            "type": "string",
            "minLength": 1,
            "maxLength": 64
          },
          "is_primary": {
            "type": "boolean"
          },
          "state": {
            "type": "string",
            "maxLength": 64
          }
        },
        "required": [
          "region"
        ]
      },
      "maxItems": 8
    },
    "tags": {
      "type": "array",
      "items": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
          "key": {
            "type": "string",
            "minLength": 1,
            "maxLength": 63
          },
          "value": {
            "type": "string",
            "minLength": 1,
            "maxLength": 63
          }
        },
        "required": [
          "key",
          "value"
        ]
      },
      "maxItems": 64
    }
  },
  "required": [
    "namespace",
    "name",
    "state",
    "resource_version",
    "retention_days"
  ]
}