Delete Policy Set (v3.0)
Delete policy set of a tenant.
Path Parameters
tenant_id string required
The tenant ID.
policy_set_id string required
The policy set ID.
Responses
- 200
- 400
Successful Operation
application/json
Schema
Example (from schema)
Schema
- Array [
- Array [
- ]
- ]
- Array [
- ]
bandwidth_allocation_schemes BandwidthAllocationScheme[] required
Allocate or modify the percentage of bandwidth configured for each priority and application traffic type. Can configure up to four bandwidth allocation schemes.
bandwidth_range BandwidthRange
The details of the bandwidth range.
high double
The high range of the bandwidth allocated.
low double
The low range of the bandwidth allocated.
business_priorities BusinessPriority[]
Information on the business priorities.
bandwidth_allocation double
The bandwidth allocated.
bandwidth_split_per_type BandwidthSplit
The bandwidth split per type.
bulk double
Bulk
rt_audio double
Rt Audio
rt_video double
Rt Video
transactional double
Transactional
priority_num int32
The priority number.
business_priority_names BusinessPriorityNameMapper[] required
The list of business priority names. Max size = 4.
priority_name string
The business priority name.
priority_num int32
The business priority number.
default_policy boolean
The default policy.
description
The description of the policy set.
id string
The policy set ID.
name string required
The name of the policy set. Max size = 128.
{
"bandwidth_allocation_schemes": [
{
"bandwidth_range": {
"high": 0,
"low": 0
},
"business_priorities": [
{
"bandwidth_allocation": 0,
"bandwidth_split_per_type": {
"bulk": 0,
"rt_audio": 0,
"rt_video": 0,
"transactional": 0
},
"priority_num": 0
}
]
}
],
"business_priority_names": [
{
"priority_name": "string",
"priority_num": 0
}
],
"default_policy": true,
"id": "string",
"name": "string"
}
Bad Request
application/json
Schema
Example (from schema)
Example
Schema
- Array [
- ]
_error ErrorResponse[]
code string
message string
{
"_error": [
{
"code": "string",
"message": "string"
}
]
}
{
"value": {
"_error": [
{
"code": "POLICY_SET_IN_USE"
},
{
"code": "DELETE_FORBIDDEN"
}
]
}
}
Loading...