Summary
Get summary of a Golden Config tree.
Description
Get summary of the specified Golden Config tree.
Route
POST /configuration_manager/search/configs
Roles
admin
apiread
Parameters
DetailsExampleSchema
Name |
Type |
Required |
Description |
treeId |
string |
yes |
- |
options |
object |
yes |
Additional search options. |
Copied to Clipboard
{
"treeId": "5c35355dbebaa82eaf8113f0",
"options": {
"start": 79501288.63995805,
"limit": -36331029.9060414,
"sort": 64856729.270324856,
"deviceType": "fugiat velit Ut"
}
}
Copied to Clipboard
{
"type": "object",
"properties": {
"treeId": {
"title": "treeId",
"$ref": "common#/definitions/mongoObjectId"
},
"options": {
"title": "options",
"properties": {
"start": {
"type": "number",
"example": "0"
},
"limit": {
"type": "number",
"example": "10"
},
"sort": {
"type": "number",
"example": 1
},
"deviceType": {
"type": "string",
"example": "cisco-ios"
}
}
}
},
"required": [
"treeId",
"options"
],
"additionalProperties": false
}
Return
DetailsExampleSchema
Name |
Type |
Description |
goldenConfigTrees |
array |
List of all Golden Config trees |
Copied to Clipboard
[
{
"id": "5c35355dbebaa82eaf8113f0",
"name": "Cisco Core - Day 0",
"deviceType": "a10-acos",
"versions": [
"initial",
"draft v4"
],
"created": "2019-04-12T14:42:47.958Z",
"lastUpdated": "2019-04-12T14:42:47.958Z"
},
{
"id": "5c35355dbebaa82eaf8113f0",
"name": "Cisco Edge - Day 0",
"deviceType": "cisco-ios",
"versions": [
"initial"
],
"created": "2019-04-12T14:42:47.958Z",
"lastUpdated": "2019-04-12T14:42:47.958Z"
},
{
"id": "5c35355dbebaa82eaf8113f0",
"name": "Cisco Core - Day 0",
"deviceType": "a10-acos",
"versions": [
"draft v4"
],
"created": "2019-04-12T14:42:47.958Z",
"lastUpdated": "2019-04-12T14:42:47.958Z"
}
]