IntegrationsDopplerActions
Delete one Doppler secret
Delete a single secret by name. Maps HTTP 204 to deleted and 404 to already_absent.
secrets.delete · Doppler · v1
Details
Scopes
None
Input
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
project | string | Yes | minLength 1; maxLength 128; pattern ^[a-z0-9](?:[a-z0-9_-]*[a-z0-9])?$ |
config | string | Yes | minLength 1; maxLength 60; pattern ^[a-z0-9](?:[a-z0-9_-]*[a-z0-9])?$ |
name | string | Yes | minLength 1; maxLength 200; pattern ^[A-Z_][A-Z0-9_]{0,199}$ |
Output
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
project | string | Yes | minLength 1; maxLength 128; pattern ^[a-z0-9](?:[a-z0-9_-]*[a-z0-9])?$ |
config | string | Yes | minLength 1; maxLength 60; pattern ^[a-z0-9](?:[a-z0-9_-]*[a-z0-9])?$ |
name | string | Yes | minLength 1; maxLength 200; pattern ^[A-Z_][A-Z0-9_]{0,199}$ |
outcome | string | Yes | enum deleted | already_absent |
Raw schema
Input
{
"type": "object",
"additionalProperties": false,
"properties": {
"project": {
"type": "string",
"minLength": 1,
"maxLength": 128,
"pattern": "^[a-z0-9](?:[a-z0-9_-]*[a-z0-9])?$"
},
"config": {
"type": "string",
"minLength": 1,
"maxLength": 60,
"pattern": "^[a-z0-9](?:[a-z0-9_-]*[a-z0-9])?$"
},
"name": {
"type": "string",
"minLength": 1,
"maxLength": 200,
"pattern": "^[A-Z_][A-Z0-9_]{0,199}$"
}
},
"required": [
"project",
"config",
"name"
]
}Output
{
"type": "object",
"additionalProperties": false,
"properties": {
"project": {
"type": "string",
"minLength": 1,
"maxLength": 128,
"pattern": "^[a-z0-9](?:[a-z0-9_-]*[a-z0-9])?$"
},
"config": {
"type": "string",
"minLength": 1,
"maxLength": 60,
"pattern": "^[a-z0-9](?:[a-z0-9_-]*[a-z0-9])?$"
},
"name": {
"type": "string",
"minLength": 1,
"maxLength": 200,
"pattern": "^[A-Z_][A-Z0-9_]{0,199}$"
},
"outcome": {
"type": "string",
"enum": [
"deleted",
"already_absent"
]
}
},
"required": [
"project",
"config",
"name",
"outcome"
]
}