IntegrationsDopplerActions
List Doppler configs
List configs for a Doppler project. Optionally filter by environment. One page per call.
configs.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])?$ |
environment | string | No | minLength 1; maxLength 64; pattern ^[a-z0-9](?:[a-z0-9_-]*[a-z0-9])?$ |
page | integer | No | minimum 1 |
per_page | integer | No | minimum 1; maximum 20 |
Output
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
page | integer | Yes | minimum 1 |
configs | array<object> | Yes | maxItems 20 |
configs[] | object | Yes | additionalProperties false |
configs[].name | string | Yes | minLength 1; maxLength 60; pattern ^[a-z0-9](?:[a-z0-9_-]*[a-z0-9])?$ |
configs[].root | boolean | Yes | — |
configs[].locked | boolean | Yes | — |
configs[].environment | string | Yes | minLength 1; maxLength 64; pattern ^[a-z0-9](?:[a-z0-9_-]*[a-z0-9])?$ |
configs[].project | string | Yes | minLength 1; maxLength 128; pattern ^[a-z0-9](?:[a-z0-9_-]*[a-z0-9])?$ |
configs[].created_at | string | No | minLength 1; maxLength 64 |
configs[].initial_fetch_at | string | No | minLength 1; maxLength 64 |
configs[].last_fetch_at | string | No | minLength 1; maxLength 64 |
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])?$"
},
"environment": {
"type": "string",
"minLength": 1,
"maxLength": 64,
"pattern": "^[a-z0-9](?:[a-z0-9_-]*[a-z0-9])?$"
},
"page": {
"type": "integer",
"minimum": 1
},
"per_page": {
"type": "integer",
"minimum": 1,
"maximum": 20
}
},
"required": [
"project"
]
}Output
{
"type": "object",
"additionalProperties": false,
"properties": {
"page": {
"type": "integer",
"minimum": 1
},
"configs": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": false,
"properties": {
"name": {
"type": "string",
"minLength": 1,
"maxLength": 60,
"pattern": "^[a-z0-9](?:[a-z0-9_-]*[a-z0-9])?$"
},
"root": {
"type": "boolean"
},
"locked": {
"type": "boolean"
},
"environment": {
"type": "string",
"minLength": 1,
"maxLength": 64,
"pattern": "^[a-z0-9](?:[a-z0-9_-]*[a-z0-9])?$"
},
"project": {
"type": "string",
"minLength": 1,
"maxLength": 128,
"pattern": "^[a-z0-9](?:[a-z0-9_-]*[a-z0-9])?$"
},
"created_at": {
"type": "string",
"minLength": 1,
"maxLength": 64
},
"initial_fetch_at": {
"type": "string",
"minLength": 1,
"maxLength": 64
},
"last_fetch_at": {
"type": "string",
"minLength": 1,
"maxLength": 64
}
},
"required": [
"name",
"root",
"locked",
"environment",
"project"
]
},
"maxItems": 20
}
},
"required": [
"page",
"configs"
]
}