Query DB for Network Contexts (v2.0)
Query DB for limit number of network contexts that match the query parameters.
Path Parameters
- tenant_id string required
The ID of the tenant.
- application/json
Request Body
Details of the query for lan segment
- description
The description of the LAN segment. Maz size = 256.
- id string
The ID of the LAN segment.
- name string
The name of the LAN segment. Max size = 128.
Responses
- 200
- 400
Successful Operation
- application/json
- Schema
- Example (from schema)
Schema
- count int32
The count of the query list.
- deleted_count int64
The deleted number of queries.
- deleted_ids string[]
The deleted query IDs.
- description
Description of the query. Max size = 256.
- id string
The ID.
- next_query object
Details of the next query.
- tenant_id string
- total_count int64
Total number of queries.
items NetworkContextQueryFilter[]
Array [descriptionThe description of the network context config. Maz size = 256.
id stringThe ID of the network context.
name string requiredThe name of the network context config. Max size = 128.
]
{
"count": 0,
"deleted_count": 0,
"deleted_ids": [
"string"
],
"id": "string",
"next_query": {},
"tenant_id": "string",
"total_count": 0,
"items": [
{
"id": "string",
"name": "string"
}
]
}
Bad Request
- application/json
- Schema
- Example (from schema)
- Example
Schema
_error ErrorResponse[]
Array [code stringmessage string]
{
"_error": [
{
"code": "string",
"message": "string"
}
]
}
{
"value": {
"_error": [
{
"code": "BAD_REQUEST"
}
]
}
}
Loading...