IntegrationsTemporalActions
Get Temporal Cloud namespace
Get one namespace by full namespace id, including retention, auth flags, and resource version.
namespaces.get · Temporal · v1
Details
Scopes
None
Input
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
namespace | string | Yes | minLength 2; maxLength 128 |
Output
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
namespace | string | Yes | minLength 2; maxLength 128 |
name | string | Yes | minLength 2; maxLength 39; pattern ^[a-z]([a-z0-9-]*[a-z0-9])?$ |
project_id | string | No | minLength 1; maxLength 128 |
state | string | Yes | 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 | string | Yes | minLength 1; maxLength 256 |
retention_days | integer | Yes | minimum 1; maximum 90 |
active_region | string | No | minLength 1; maxLength 64 |
async_operation_id | string | No | minLength 1; maxLength 256 |
created_at | string | No | minLength 1; maxLength 64 |
updated_at | string | No | minLength 1; maxLength 64 |
enable_delete_protection | boolean | No | — |
api_key_auth_enabled | boolean | No | — |
mtls_auth_enabled | boolean | No | — |
endpoints | object | No | additionalProperties false |
endpoints.web_address | string | No | maxLength 512 |
endpoints.grpc_address | string | No | maxLength 512 |
endpoints.mtls_grpc_address | string | No | maxLength 512 |
replicas | array<object> | No | maxItems 8 |
replicas[] | object | Yes | additionalProperties false |
replicas[].id | string | No | maxLength 128 |
replicas[].region | string | Yes | minLength 1; maxLength 64 |
replicas[].is_primary | boolean | No | — |
replicas[].state | string | No | maxLength 64 |
tags | array<object> | No | maxItems 64 |
tags[] | object | Yes | additionalProperties false |
tags[].key | string | Yes | minLength 1; maxLength 63 |
tags[].value | string | Yes | minLength 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"
]
}