Update Security Policy Set (v2.0)
PUT/v2.0/api/tenants/:tenant_id/ngfwsecuritypolicysets/:policy_set_id
Update a security policy V2 set by the tenant ID and the policy set ID.
Request
Path Parameters
The tenant ID.
ID of the security policy set.
- application/json
Body
Policy sets cloned from existing policy sets.
The default rule of the policy set.
The description of the security policy set. Max size = 256.
The security policy set ID.
The name of the security policy set. Max size = 128.
The order for the execution of the policy rule.
A information field that can be added to identify the security policy set. Maximum 10 unique tags of length 1024 each are allowed.
Responses
- 200
- 400
Successful Operation
- application/json
- Schema
- Example (from schema)
Schema
Policy sets cloned from existing policy sets.
The default rule of the policy set.
The description of the security policy set. Max size = 256.
The security policy set ID.
The name of the security policy set. Max size = 128.
The order for the execution of the policy rule.
A information field that can be added to identify the security policy set. Maximum 10 unique tags of length 1024 each are allowed.
{
"clone_from": "string",
"defaultrule_policyset": true,
"id": "string",
"name": "string",
"policyrule_order": [
"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_INPUT"
},
{
"code": "INVALID_JSON_EXTRA_ATTRIBUTE"
}
]
}
}