managed_blueprints_list
GET/managed/blueprints/
Blueprint instances
Request
Query Parameters
name string
ordering string
Which field to use when ordering the results.
page integer
A page number within the paginated result set.
page_size integer
Number of results to return per page.
path string
search string
A search term.
Responses
- 200
- 400
- 403
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
pagination
object
required
next numberrequired
previous numberrequired
count numberrequired
current numberrequired
total_pages numberrequired
start_index numberrequired
end_index numberrequired
results
object[]
required
pk uuidrequired
name stringrequired
path string
context
last_applied date-timerequired
last_applied_hash stringrequired
status BlueprintInstanceStatusEnum (string)required
Possible values: [successful
, warning
, error
, orphaned
, unknown
]
enabled boolean
managed_models string[]required
metadata required
content string
{
"pagination": {
"next": 0,
"previous": 0,
"count": 0,
"current": 0,
"total_pages": 0,
"start_index": 0,
"end_index": 0
},
"results": [
{
"pk": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"name": "string",
"path": "string",
"context": {},
"last_applied": "2024-07-29T15:51:28.071Z",
"last_applied_hash": "string",
"status": "successful",
"enabled": true,
"managed_models": [
"string"
],
"content": "string"
}
]
}
- application/json
- Schema
- Example (from schema)
Schema
non_field_errors string[]
code string
property name* any
Validation Error
{
"non_field_errors": [
"string"
],
"code": "string"
}
- application/json
- Schema
- Example (from schema)
Schema
detail stringrequired
code string
{
"detail": "string",
"code": "string"
}
Loading...