Update Sensor Global Config Mps

Update Sensor Global Config Mps
Update sensor global config for MPS

Updates sensor global configuration for Malware Prevention. Includes file categories that need to be extracted and analyzed.

Request
URI
PUT
https://{api_host}/sensors/mps-global-config
COPY
Request Body

Sensor global config.

SensorGlobalConfigMps of type(s) application/json
Required
{
    "document_file_type": false,
    "executable_file_type": false,
    "media_file_type": false,
    "archive_file_type": false,
    "data_file_type": false,
    "script_file_type": false,
    "other_file_type": false
}
boolean
document_file_type
Required

Specifies if document file type to be analyzed.

boolean
executable_file_type
Required

Specifies if executable file type to be analyzed.

boolean
media_file_type
Required

Specifies if media file type to be analyzed.

boolean
archive_file_type
Required

Specifies if archive file type to be analyzed.

boolean
data_file_type
Required

Specifies if data file type to be analyzed.

boolean
script_file_type
Required

Specifies if script file type to be analyzed.

boolean
other_file_type
Required

Specifies if other file type to be analyzed.

Authentication
This operation uses the following authentication methods.
Responses
200

OK

Returns SensorGlobalConfigMps of type(s) application/json
"SensorGlobalConfigMps Object"
boolean
document_file_type
Required

Specifies if document file type to be analyzed.

boolean
executable_file_type
Required

Specifies if executable file type to be analyzed.

boolean
media_file_type
Required

Specifies if media file type to be analyzed.

boolean
archive_file_type
Required

Specifies if archive file type to be analyzed.

boolean
data_file_type
Required

Specifies if data file type to be analyzed.

boolean
script_file_type
Required

Specifies if script file type to be analyzed.

boolean
other_file_type
Required

Specifies if other file type to be analyzed.


default

Error

Returns Error of type(s) application/json
{
    "error_code": 0,
    "module_name": "string",
    "error_message": "string"
}
integer
error_code
Required

HTTP Status or Application error code.

string
module_name
Optional

Module where the error happened.

string
error_message
Required

Message describing the error.


Vendor Extension

This operation contains the following vendor extensions defined in the spec:

                    platform-sensor-lic
                
Code Samples
COPY
                    curl -X PUT -H 'Authorization: <value>' -H 'Content-Type: application/json' -d '{"document_file_type:"boolean","executable_file_type:"boolean","media_file_type:"boolean","archive_file_type:"boolean","data_file_type:"boolean","script_file_type:"boolean","other_file_type:"boolean"}' https://{api_host}/sensors/mps-global-config