IntegrationsTemporalActions
Delete Temporal Cloud namespace
Permanently delete a namespace. Requires confirmation DELETE and resource_version. Rejected while delete protection is enabled.
namespaces.delete · Temporal · v1
Details
Scopes
None
Input
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
namespace | string | Yes | minLength 2; maxLength 128 |
resource_version | string | Yes | minLength 1; maxLength 256 |
confirmation | string | Yes | enum DELETE |
Output
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
namespace | string | No | minLength 2; maxLength 128 |
operation | object | Yes | additionalProperties false |
operation.id | string | Yes | minLength 1; maxLength 256 |
operation.state | string | Yes | enum STATE_UNSPECIFIED | STATE_PENDING | STATE_IN_PROGRESS | STATE_FAILED | STATE_CANCELLED | STATE_FULFILLED | STATE_REJECTED |
operation.operation_type | string | Yes | minLength 1; maxLength 128 |
operation.check_after | string | No | minLength 1; maxLength 64 |
operation.started_at | string | No | minLength 1; maxLength 64 |
operation.finished_at | string | No | minLength 1; maxLength 64 |
operation.failure_reason | string | No | maxLength 2000 |
Raw schema
Input
{
"type": "object",
"additionalProperties": false,
"properties": {
"namespace": {
"type": "string",
"minLength": 2,
"maxLength": 128
},
"resource_version": {
"type": "string",
"minLength": 1,
"maxLength": 256
},
"confirmation": {
"type": "string",
"enum": [
"DELETE"
]
}
},
"required": [
"namespace",
"resource_version",
"confirmation"
]
}Output
{
"type": "object",
"additionalProperties": false,
"properties": {
"namespace": {
"type": "string",
"minLength": 2,
"maxLength": 128
},
"operation": {
"type": "object",
"additionalProperties": false,
"properties": {
"id": {
"type": "string",
"minLength": 1,
"maxLength": 256
},
"state": {
"type": "string",
"enum": [
"STATE_UNSPECIFIED",
"STATE_PENDING",
"STATE_IN_PROGRESS",
"STATE_FAILED",
"STATE_CANCELLED",
"STATE_FULFILLED",
"STATE_REJECTED"
]
},
"operation_type": {
"type": "string",
"minLength": 1,
"maxLength": 128
},
"check_after": {
"type": "string",
"minLength": 1,
"maxLength": 64
},
"started_at": {
"type": "string",
"minLength": 1,
"maxLength": 64
},
"finished_at": {
"type": "string",
"minLength": 1,
"maxLength": 64
},
"failure_reason": {
"type": "string",
"maxLength": 2000
}
},
"required": [
"id",
"state",
"operation_type"
]
}
},
"required": [
"operation"
]
}