Decryption-Exclusion - Distributed Secure Internet GateWay API References (1.5.0)
Download OpenAPI specification:Download
Decryption-Exclusions specifies rules to not execute ssl decryption. Decryption-Exclusions will be applied to all Cells that belong to specified Cell-Groups.
Get Decryption-Exclusions
Get Decryption-Exclusion resources.
Authorizations:
query Parameters
id | string ^[a-fA-F0-9]{8}(-[a-fA-F0-9]{4}){3}-[a-fA-F0-9]{12}$ The ID of the resource. |
name | string ^[a-zA-Z]{1}[a-zA-Z0-9-\_\.]{0,30}$ A name of the resource. |
cellGroupId | string ^[a-fA-F0-9]{8}(-[a-fA-F0-9]{4}){3}-[a-fA-F0-9]{12}$ The Cell-Group ID which the resource belongs. |
header Parameters
X-Auth-Token required | string The keystone token. |
Responses
OK
Bad Request
Unauthorized
Internal Server Error
Response samples
- 200
- 400
- 401
- 500
{- "decryptionExclusions": [
- {
- "id": "2944a32f-3fb7-430e-9134-5eb611be23f6",
- "name": "test",
- "cellGroupId": "047ae2a5-c763-4bea-9171-e178d08951ca",
- "sourceAddresses": [
- "any"
], - "destinationAddresses": [
- "any"
], - "force": false,
- "customUrlCategoryIds": [
- "d7e30854-c38e-4836-b17a-0e95d3d80997"
], - "urlCategoryNames": [
- "shopping"
], - "tenantId": "12345678abcdabcdabcd1234567890ab",
- "createdAt": "2020-08-27T10:04:04Z",
- "updatedAt": "2020-08-27T10:04:04Z"
}
]
}
Create Decryption-Exclusion
Create a Decryption-Exclusion resource.
Authorizations:
header Parameters
X-Auth-Token | string The keystone token. |
Request Body schema: application/json
decryptionExclusion required | object (DecryptionExclusionCreateRequest) Either customUrlCategoryIds or urlCategoryNames is required. |
Responses
OK
Bad Request
Unauthorized
Internal Server Error
Request samples
- Payload
{- "decryptionExclusion": {
- "name": "test",
- "cellGroupId": "047ae2a5-c763-4bea-9171-e178d08951ca",
- "sourceAddresses": [
- "any"
], - "destinationAddresses": [
- "any"
], - "force": true,
- "customUrlCategoryIds": [
- "d7e30854-c38e-4836-b17a-0e95d3d80997"
], - "urlCategoryNames": [
- "shopping"
]
}
}
Response samples
- 200
- 400
- 401
- 500
{- "decryptionExclusion": {
- "id": "2944a32f-3fb7-430e-9134-5eb611be23f6",
- "name": "test",
- "cellGroupId": "047ae2a5-c763-4bea-9171-e178d08951ca",
- "sourceAddresses": [
- "any"
], - "destinationAddresses": [
- "any"
], - "force": true,
- "customUrlCategoryIds": [
- "d7e30854-c38e-4836-b17a-0e95d3d80997"
], - "urlCategoryNames": [
- "shopping"
], - "tenantId": "12345678abcdabcdabcd1234567890ab",
- "operationId": "f2393b68-12b0-4ad6-8c3c-012f0a4136d7",
- "createdAt": "2020-08-27T10:04:04Z",
- "updatedAt": "2020-08-27T10:04:04Z"
}
}
Get Decryption-Exclusion Details
Get a Decryption-Exclusion resource.
Authorizations:
path Parameters
decryption_exclusion_id required | string |
header Parameters
X-Auth-Token | string The keystone token. |
Responses
OK
Bad Request
Unauthorized
Not Found
Internal Server Error
Response samples
- 200
- 400
- 401
- 404
- 500
{- "decryptionExclusion": {
- "id": "2944a32f-3fb7-430e-9134-5eb611be23f6",
- "name": "test",
- "cellGroupId": "047ae2a5-c763-4bea-9171-e178d08951ca",
- "sourceAddresses": [
- "any"
], - "destinationAddresses": [
- "any"
], - "force": false,
- "customUrlCategoryIds": [
- "d7e30854-c38e-4836-b17a-0e95d3d80997"
], - "urlCategoryNames": [
- "shopping"
], - "tenantId": "12345678abcdabcdabcd1234567890ab",
- "createdAt": "2020-08-27T10:04:04Z",
- "updatedAt": "2020-08-27T10:04:04Z"
}
}
Update Decryption-Exclusion
Update a Decryption-Exclusion resource.
Authorizations:
path Parameters
decryption_exclusion_id required | string |
header Parameters
X-Auth-Token | string |
Request Body schema: application/json
decryptionExclusion required | object (DecryptionExclusionUpdateRequest) |
Responses
OK
Bad Request
Unauthorized
Not Found
Internal Server Error
Request samples
- Payload
{- "decryptionExclusion": {
- "name": "test_updated"
}
}
Response samples
- 200
- 400
- 401
- 404
- 500
{- "decryptionExclusion": {
- "id": "2944a32f-3fb7-430e-9134-5eb611be23f6",
- "name": "test_updated",
- "cellGroupId": "047ae2a5-c763-4bea-9171-e178d08951ca",
- "sourceAddresses": [
- "any"
], - "destinationAddresses": [
- "any"
], - "force": false,
- "customUrlCategoryIds": [
- "d7e30854-c38e-4836-b17a-0e95d3d80997"
], - "urlCategoryNames": [
- "shopping"
], - "tenantId": "12345678abcdabcdabcd1234567890ab",
- "operationId": "f7e966a2-9460-4907-9710-776e95cd0724",
- "createdAt": "2020-08-27T10:04:04Z",
- "updatedAt": "2020-08-27T10:32:35Z"
}
}
Delete Decryption-Exclusion
Delete a Decryption-Exclusion resource.
Authorizations:
path Parameters
decryption_exclusion_id required | string |
header Parameters
X-Auth-Token | string |
Responses
OK
Bad Request
Unauthorized
Not Found
Internal Server Error
Response samples
- 400
- 401
- 404
- 500
{- "errorCode": 400,
- "errorMessage": "Invalid request",
- "moreInfo": "{{moreInfo}}"
}