getCleanListList

The getCleanListList operation handles configuration related to CleanList model. 

Description

If you add a file to this list, the system treats it as if the AMP cloud assigned a clean disposition. If you use AMP for Networks, and the AMP cloud incorrectly identifies a file’s disposition, you can add the file to a file list to better detect the file in the future. These files are specified using SHA-256 hash values. Each file list can contain up to 10000 unique SHA-256 values.

Query Parameters

Parameter Required Type Description
offset False integer An integer representing the index of the first requested object. Index starts from 0. If not specified, the returned objects will start from index 0
limit False integer An integer representing the maximum amount of objects to return. If not specified, the maximum amount is 10
sort False string The field used to sort the requested object list
filter False string The criteria used to filter the models you are requesting. It should have the following format: {key}{operator}{value}[;{key}{operator}{value}]. Supported operators are: "!"(not equals), ":"(equals), "~"(similar). Supported keys are: "name", "fts". The "fts" filter cannot be used with other filters.

Example

- name: Execute 'getCleanListList' operation
  ftd_configuration:
    operation: "getCleanListList"
    query_params:
        offset: "{{ offset }}"
        limit: "{{ limit }}"
        sort: "{{ sort }}"
        filter: "{{ filter }}"