Get Security Policy Set Stack
GET/v2.0/api/tenants/:tenant_id/ngfwsecuritypolicysetstacks/:policyset_stack_id
List an existing security policy V2 set stack using the tenant ID and stack ID.
Request
Path Parameters
tenant_id stringrequired
The tenant ID.
policyset_stack_id stringrequired
ID of the policy v2 set stack.
Responses
- 200
- 400
Successful Operation
- application/json
- Schema
- Example (from schema)
Schema
defaultrule_policyset_id string
The default rule of the policy set ID.
description
The description of the security policy set stack. Max size = 256.
id string
The security policy set stack ID.
name stringrequired
The name of the security policy set stack.
policyset_ids string[]
The ID of the policy set. Policy sets must be between 1-4.
tags string[]
A information field that can be added to identify the security policy set stack. Maximum 10 unique tags of length 1024 each are allowed.
{
"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
message string
{
"_error": [
{
"code": "string",
"message": "string"
}
]
}
{
"value": {
"_error": [
{
"code": "NGFWSETSTACK_NOT_FOUND"
}
]
}
}
Loading...