Update IPFIX Local Prefix (v2.0)
PUT/sdwan/v2.0/api/ipfixlocalprefixes/:prefix_id
Update an IPFIX local prefix.
Request
Path Parameters
prefix_id stringrequired
ID of the IPFIX local prefix.
- application/json
Body
description
The description of the IPFIX local prefix. Max characters = 256.
id string
The ID of the IPFIX local prefix.
name stringrequired
The name of the IPFIX local prefix. Max characters = 128.
tags string[]
A information field that can be added to identify the IPFIX local prefix. Maximum 10 unique tags of length 1024 each are allowed.
Responses
- 200
- 400
Successful Operation
- application/json
- Schema
- Example (from schema)
Schema
description
The description of the IPFIX local prefix. Max characters = 256.
id string
The ID of the IPFIX local prefix.
name stringrequired
The name of the IPFIX local prefix. Max characters = 128.
tags string[]
A information field that can be added to identify the IPFIX local prefix. Maximum 10 unique tags of length 1024 each are allowed.
{
"id": "string",
"name": "string",
"tags": [
"string"
]
}
Bad Request
- application/json
- Schema
- Example (from schema)
- Example
Schema
- Array [
- ]
_error ErrorResponse[]
code string
The error code.
message string
The error message.
{
"_error": [
{
"code": "string",
"message": "string"
}
]
}
{
"value": {
"_error": [
{
"code": "INVALID_JSON_INPUT"
},
{
"code": "INVALID_JSON_EXTRA_ATTRIBUTE"
},
{
"code": "INVALID_REQUEST_DUPLICATE_KEY"
},
{
"code": "NAME_REQD"
},
{
"code": "DESCRIPTION_EXCEEDS_LIMIT"
},
{
"code": "INVALID_TAG"
},
{
"code": "INVALID_JSON_COMMON_ATTR_MISMATCH"
}
]
}
}
Loading...