Update Security Policy Local Prefix (v2.0)
PUT/v2.0/api/tenants/:tenant_id/ngfwsecuritypolicylocalprefixes/:prefix_id
Update a security policy V2 local prefix by the tenant ID and the prefix ID.
Request
Path Parameters
The tenant ID.
ID of the security policy local prefix.
- application/json
Body
The description of the security policy local prefix. Max size = 256.
The ID of the security policy local prefix.
The name of the security policy local prefix. Max size = 128.
A information field that can be added to identify the security policy local prefix. Maximum 10 unique tags of length 1024 each are allowed.
Responses
- 200
- 400
Successful Operation
- application/json
- Schema
- Example (from schema)
Schema
The description of the security policy local prefix. Max size = 256.
The ID of the security policy local prefix.
The name of the security policy local prefix. Max size = 128.
A information field that can be added to identify the security policy 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[]
The error code.
The error message.
{
"_error": [
{
"code": "string",
"message": "string"
}
]
}
{
"value": {
"_error": [
{
"code": "INVALID_JSON_INPUT"
},
{
"code": "INVALID_JSON_EXTRA_ATTRIBUTE"
},
{
"code": "NAME_REQD"
},
{
"code": "DESCRIPTION_EXCEEDS_LIMIT"
},
{
"code": "INVALID_TAG"
}
]
}
}