IntegrationsDopplerActions
List Doppler secret names
List secret names in a config. Always requests include_dynamic_secrets=false to avoid lease issuance. Returns at most 1,000 names.
secrets.names.list · 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])?$ |
include_managed_secrets | boolean | No | — |
Output
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
names | array<string> | Yes | maxItems 1000 |
names[] | string | Yes | minLength 1; maxLength 200; pattern ^[A-Z_][A-Z0-9_]{0,199}$ |
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])?$"
},
"include_managed_secrets": {
"type": "boolean"
}
},
"required": [
"project",
"config"
]
}Output
{
"type": "object",
"additionalProperties": false,
"properties": {
"names": {
"type": "array",
"items": {
"type": "string",
"minLength": 1,
"maxLength": 200,
"pattern": "^[A-Z_][A-Z0-9_]{0,199}$"
},
"maxItems": 1000
}
},
"required": [
"names"
]
}