Anti-Spyware-Exclusion - Distributed Secure Internet GateWay API References (1.5.0)
Download OpenAPI specification:Download
Anti-Spyware-Exclusions is the object for anti-apyware exclusion rules. Anti-Spyware-Exclusions will be applied to all Cells that belong to specified Cell-Groups.
Get Anti-Spyware-Exclusions
Get Anti-Spyware-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-Z0-9-_]{1,31}$ 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. |
signatureId | string ^[1-9][0-9]{4}$|^[1-9][0-9]{8}$ The ID of signature. |
header Parameters
X-Auth-Token required | string The keystone token. |
Responses
OK
Bad Request
Unauthorized
Internal Server Error
Response samples
- 200
- 400
- 401
- 500
{- "antiSpywareExclusions": [
- {
- "id": "5be775de-aa0b-468c-ba69-6e35dc5c5c32",
- "name": "test_anti_spyware_exclusion",
- "cellGroupId": "86acc283-c60d-4c3f-a193-77e249a9c3ab",
- "signatureId": "10112",
- "action": "alert",
- "tenantId": "1234567890abcdef1234567890abcdef",
- "createdAt": "2019-05-14T03:04:48Z",
- "updatedAt": "2019-05-14T03:04:48Z"
}
]
}
Create Anti-Spyware-Exclusion
Create an Anti-Spyware-Exclusion resource.
Authorizations:
header Parameters
X-Auth-Token required | string |
Request Body schema: application/json
antiSpywareExclusion required | object (AntiSpywareExclusionCreateRequest) An Anti-Spyware-Exclusion Object. |
Responses
OK
Bad Request
Unauthorized
Forbidden
Internal Server Error
Request samples
- Payload
{- "antiSpywareExclusion": {
- "name": "test_anti_spyware_exclusion",
- "cellGroupId": "86acc283-c60d-4c3f-a193-77e249a9c3ab",
- "action": "alert",
- "signatureId": "10112"
}
}
Response samples
- 200
- 400
- 401
- 403
- 500
{- "antiSpywareExclusion": {
- "id": "5be775de-aa0b-468c-ba69-6e35dc5c5c32",
- "name": "test_anti_spyware_exclusion",
- "cellGroupId": "86acc283-c60d-4c3f-a193-77e249a9c3ab",
- "action": "alert",
- "signatureId": "10112",
- "tenantId": "1234567890abcdef1234567890abcdef",
- "operationId": "715ee526-1c17-44c4-822d-c3c044babfe8",
- "createdAt": "2019-05-14T03:04:48Z",
- "updatedAt": "2019-05-14T03:04:48Z"
}
}
Get Anti-Spyware-Exclusion Details
Get an Anti-Spyware-Exclusion resource.
Authorizations:
path Parameters
anti_spyware_exclusion_id required | string ^[a-fA-F0-9]{8}(-[a-fA-F0-9]{4}){3}-[a-fA-F0-9]{12}$ The ID of the resource. |
header Parameters
X-Auth-Token required | string The keystone token. |
Responses
OK
Bad Request
Unauthorized
Not Found
Internal Server Error
Response samples
- 200
- 400
- 401
- 404
- 500
{- "antiSpywareExclusion": {
- "id": "5be775de-aa0b-468c-ba69-6e35dc5c5c32",
- "name": "test_anti_spyware_exclusion",
- "cellGroupId": "86acc283-c60d-4c3f-a193-77e249a9c3ab",
- "action": "alert",
- "signatureId": "10112",
- "tenantId": "1234567890abcdef1234567890abcdef",
- "createdAt": "2019-05-14T03:04:48Z",
- "updatedAt": "2019-05-14T03:04:48Z"
}
}
Update Anti-Spyware-Exclusion
Update an Anti-Spyware-Exclusion resource.
Authorizations:
path Parameters
anti_spyware_exclusion_id required | string ^[a-fA-F0-9]{8}(-[a-fA-F0-9]{4}){3}-[a-fA-F0-9]{12}$ The ID of the resource. |
header Parameters
X-Auth-Token required | string The keystone token. |
Request Body schema: application/json
antiSpywareExclusion required | object (AntiSpywareExclusionUpdateRequest) An Anti-Spyware-Exclusion Object. |
Responses
OK
Bad Request
Unauthorized
Not Found
Internal Server Error
Request samples
- Payload
{- "antiSpywareExclusion": {
- "name": "test_exclusion_updated",
- "signatureId": "101123456"
}
}
Response samples
- 200
- 400
- 401
- 404
- 500
{- "antiSpywareExclusion": {
- "id": "5be775de-aa0b-468c-ba69-6e35dc5c5c32",
- "name": "test_exclusion_updated",
- "cellGroupId": "86acc283-c60d-4c3f-a193-77e249a9c3ab",
- "action": "alert",
- "signatureId": "101123456",
- "tenantId": "1234567890abcdef1234567890abcdef",
- "operationId": "715ee526-1c17-44c4-822d-c3c044babfe8",
- "createdAt": "2019-05-14T03:04:48Z",
- "updatedAt": "2019-05-14T03:04:48Z"
}
}
Delete Anti-Spyware-Exclusion
Delete an Anti-Spyware-Exclusion resource.
Authorizations:
path Parameters
anti_spyware_exclusion_id required | string ^[a-fA-F0-9]{8}(-[a-fA-F0-9]{4}){3}-[a-fA-F0-9]{12}$ The ID of the resource. |
header Parameters
X-Auth-Token required | string The keystone token. |
Responses
OK
Bad Request
Unauthorized
Not Found
Internal Server Error
Response samples
- 400
- 401
- 404
- 500
{- "errorCode": 400,
- "errorMessage": "Invalid request",
- "moreInfo": "{{moreInfo}}"
}