addCustomLoggingList

The addCustomLoggingList operation handles configuration related to CustomLoggingList model. 

Description

This API call is not allowed on the standby unit in an HA pair.

Data Parameters

Parameter Required Type Description
name True string Name of the object.
messagesCriteria False [object] A list of message ids/ranges.
logClassCriteria False [object] A list of custom log levels.
description False string description of object.
Field level constraints: length must be between 0 and 200 (inclusive). (Note: Additional constraints might exist)
type True string A UTF8 string, all letters lower-case, that represents the class-type. This corresponds to the class name.

Example

- name: Execute 'addCustomLoggingList' operation
  ftd_configuration:
    operation: "addCustomLoggingList"
    data:
        name: "{{ name }}"
        messagesCriteria: "{{ messages_criteria }}"
        logClassCriteria: "{{ log_class_criteria }}"
        description: "{{ description }}"
        type: "{{ type }}"