IntegrationsTemporalActions
List Temporal Cloud namespaces
List namespaces in the connected account. One page per call; map limit→pageSize and cursor→pageToken.
namespaces.list · Temporal · v1
Details
Scopes
None
Input
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
limit | integer | No | minimum 1; maximum 100 |
cursor | string | No | minLength 1; maxLength 512 |
name | string | No | minLength 1; maxLength 39 |
project_id | string | No | minLength 1; maxLength 128 |
Output
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
namespaces | array<object> | Yes | maxItems 100 |
namespaces[] | object | Yes | additionalProperties false |
namespaces[].namespace | string | Yes | minLength 2; maxLength 128 |
namespaces[].name | string | Yes | minLength 2; maxLength 39; pattern ^[a-z]([a-z0-9-]*[a-z0-9])?$ |
namespaces[].project_id | string | No | minLength 1; maxLength 128 |
namespaces[].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 |
namespaces[].resource_version | string | Yes | minLength 1; maxLength 256 |
namespaces[].retention_days | integer | Yes | minimum 1; maximum 90 |
namespaces[].active_region | string | No | minLength 1; maxLength 64 |
namespaces[].async_operation_id | string | No | minLength 1; maxLength 256 |
namespaces[].created_at | string | No | minLength 1; maxLength 64 |
namespaces[].updated_at | string | No | minLength 1; maxLength 64 |
namespaces[].enable_delete_protection | boolean | No | — |
namespaces[].api_key_auth_enabled | boolean | No | — |
namespaces[].mtls_auth_enabled | boolean | No | — |
namespaces[].endpoints | object | No | additionalProperties false |
namespaces[].endpoints.web_address | string | No | maxLength 512 |
namespaces[].endpoints.grpc_address | string | No | maxLength 512 |
namespaces[].endpoints.mtls_grpc_address | string | No | maxLength 512 |
namespaces[].replicas | array<object> | No | maxItems 8 |
namespaces[].replicas[] | object | Yes | additionalProperties false |
namespaces[].replicas[].id | string | No | maxLength 128 |
namespaces[].replicas[].region | string | Yes | minLength 1; maxLength 64 |
namespaces[].replicas[].is_primary | boolean | No | — |
namespaces[].replicas[].state | string | No | maxLength 64 |
namespaces[].tags | array<object> | No | maxItems 64 |
namespaces[].tags[] | object | Yes | additionalProperties false |
namespaces[].tags[].key | string | Yes | minLength 1; maxLength 63 |
namespaces[].tags[].value | string | Yes | minLength 1; maxLength 63 |
next_cursor | string | No | minLength 1; maxLength 512 |
Raw schema
Input
{
"type": "object",
"additionalProperties": false,
"properties": {
"limit": {
"type": "integer",
"minimum": 1,
"maximum": 100
},
"cursor": {
"type": "string",
"minLength": 1,
"maxLength": 512
},
"name": {
"type": "string",
"minLength": 1,
"maxLength": 39
},
"project_id": {
"type": "string",
"minLength": 1,
"maxLength": 128
}
}
}Output
{
"type": "object",
"additionalProperties": false,
"properties": {
"namespaces": {
"type": "array",
"items": {
"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"
]
},
"maxItems": 100
},
"next_cursor": {
"type": "string",
"minLength": 1,
"maxLength": 512
}
},
"required": [
"namespaces"
]
}