Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions docusaurus.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -904,6 +904,9 @@ const config = {
outputDir: "products/scm/api/config/cloudngfw/security",
sidebarOptions: { groupPathsBy: "tag" },
},
"ngfw-operations": {
specPath: "openapi-specs/scm/config/ngfw-operations",
outputDir: "products/scm/api/config/ngfw-operations",
"config-incidents": {
specPath: "openapi-specs/scm/config/incidents",
outputDir: "products/scm/api/config/incidents",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,8 @@ tags:
description: WildFire Anti-Virus Profiles
- name: Saas Tenant Restrictions
description: Saas Tenant Restrictions
- name: Ssl Decryption Settings
description: Ssl Decrypt
paths:
/anti-spyware-profiles:
get:
Expand Down Expand Up @@ -1344,7 +1346,20 @@ paths:
content:
application/json:
schema:
$ref: '#/components/schemas/ssl-decryption-settings'
type: object
properties:
data:
type: array
items:
$ref: '#/components/schemas/ssl-decryption-settings-get-put'
limit:
type: integer
default: 200
offset:
type: integer
default: 0
total:
type: integer
'400':
$ref: '#/components/responses/bad_request_errors_basic'
'401':
Expand Down Expand Up @@ -1390,13 +1405,19 @@ paths:
summary: PUT Ssl Decryption Settings
description: PUT Ssl Decryption Settings
operationId: putSslDecryptionSettings
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/ssl-decryption-settings-get-put'
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/ssl-decryption-settings'
$ref: '#/components/schemas/ssl-decryption-settings-get-put'
'400':
$ref: '#/components/responses/bad_request_errors_basic_with_body'
'401':
Expand Down Expand Up @@ -4177,7 +4198,6 @@ components:
anti-spyware-signatures:
type: object
required:
- id
- threat_id
- threatname
properties:
Expand Down Expand Up @@ -4695,7 +4715,6 @@ components:
decryption-exclusions:
type: object
required:
- id
- name
properties:
id:
Expand Down Expand Up @@ -6680,6 +6699,119 @@ components:
type: array
items:
type: object
oneOf:
- type: object
title: folder
properties:
folder:
type: string
pattern: ^[a-zA-Z\d\-_\. ]+$
maxLength: 64
description: The folder in which the resource is defined
example: My Folder
required:
- folder
- type: object
title: snippet
properties:
snippet:
type: string
pattern: ^[a-zA-Z\d\-_\. ]+$
maxLength: 64
description: The snippet in which the resource is defined
example: My Snippet
required:
- snippet
- type: object
title: device
properties:
device:
type: string
pattern: ^[a-zA-Z\d\-_\. ]+$
maxLength: 64
description: The device in which the resource is defined
example: My Device
required:
- device
ssl-decryption-settings-get-put:
type: object
required:
- ssl_decrypt
properties:
ssl_decrypt:
type: object
properties:
disabled_ssl_exclude_cert_from_predefined:
type: array
items:
type: object
forward_trust_certificate:
type: object
properties:
ecdsa:
type: string
rsa:
type: string
forward_untrust_certificate:
type: object
properties:
rsa:
type: string
ecdsa:
type: string
root_ca_exclude_list:
type: array
items:
type: object
ssl_exclude_cert:
type: array
items:
type: object
properties:
description:
type: string
exclude:
type: boolean
name:
type: string
trusted_root_CA:
type: array
items:
type: object
oneOf:
- type: object
title: folder
properties:
folder:
type: string
pattern: ^[a-zA-Z\d\-_\. ]+$
maxLength: 64
description: The folder in which the resource is defined
example: My Folder
required:
- folder
- type: object
title: snippet
properties:
snippet:
type: string
pattern: ^[a-zA-Z\d\-_\. ]+$
maxLength: 64
description: The snippet in which the resource is defined
example: My Snippet
required:
- snippet
- type: object
title: device
properties:
device:
type: string
pattern: ^[a-zA-Z\d\-_\. ]+$
maxLength: 64
description: The device in which the resource is defined
example: My Device
required:
- device
url-access-profiles:
type: object
properties:
Expand Down
Loading
Loading