Delete Performance Policy Set Stack (v2.0)
DELETE/v2.0/api/tenants/:tenant_id/perfmgmtpolicysetstacks/:id
Delete a performance policy set stack.
Request
Path Parameters
tenant_id stringrequired
The tenant ID.
id stringrequired
The performance policy set ID.
Responses
- 200
- 400
Successful Operation
- application/json
- Schema
- Example (from schema)
Schema
default_policysetstack boolean
The default policy set stack.
defaultrule_policyset_id stringrequired
The ID of the default rule policy set.
description
The description of the policy set stack. Max size = 256.
id string
The policy set stack ID.
name stringrequired
The name of the performance policy set stack. Max size = 128.
policyset_ids string[]
The policy set IDs.Should be between 1-4.
tags string[]
A information field that can be added to identify the policy set stack. Maximum 10 unique tags of length 1024 each are allowed.
{
"default_policysetstack": true,
"defaultrule_policyset_id": "string",
"id": "string",
"name": "string",
"policyset_ids": [
"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": "DEFAULT_POLICYSETSTACK_CAN_NOT_BE_DELETED"
},
{
"code": "POLICYSETSTACK_IN_USE"
}
]
}
}
Loading...