Update Service Binding Map (v2.1)
PUT/sdwan/v2.1/api/servicebindingmaps/:map_id
Update a service binding map.
Request
Path Parameters
The ID of the service binding map.
- application/json
Body
Details of the service binding maps to be updated
- Array [
- ]
The description of the service binding map. Max size = 256.
The ID of the service binding map.
The default map.
The name of the service binding map. Max size = 128.
service_bindings ServiceBinding[]required
The service binding endpoint IDs and labels.
The service endpoint IDs.
The service label ID.
A information field that can be added to identify the service binding map. Maximum 10 unique tags of length 1024 each are allowed.
Responses
- 200
- 400
Successful Operation
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
The description of the service binding map. Max size = 256.
The ID of the service binding map.
The default map.
The name of the service binding map. Max size = 128.
service_bindings ServiceBinding[]required
The service binding endpoint IDs and labels.
The service endpoint IDs.
The service label ID.
A information field that can be added to identify the service binding map. Maximum 10 unique tags of length 1024 each are allowed.
{
"id": "string",
"is_default": true,
"name": "string",
"service_bindings": [
{
"service_endpoint_ids": [
"string"
],
"service_label_id": "string"
}
],
"tags": [
"string"
]
}
Bad Request
- application/json
- Schema
- Example (from schema)
- Example
Schema
- Array [
- ]
_error ErrorResponse[]
The error code.
The error message.
{
"_error": [
{
"code": "string",
"message": "string"
}
]
}
{
"value": {
"_error": [
{
"code": "INVALID_JSON"
},
{
"code": "SERVICEBINDINGMAP_NAME_REQD"
},
{
"code": "SERVICEBINDING_NAME_EXCEEDS_LIMIT"
},
{
"code": "DESCRIPTION_SIZE_EXCEEDED"
},
{
"code": "SERVICEBINDINGMAP_CONFIG_SASELABEL_TOO_MANY_SERVICEENDPOINTS"
}
]
}
}