addIntrusionGroupRuleUpdate

The addIntrusionGroupRuleUpdate operation handles configuration related to IntrusionGroupRuleUpdate model. 

Description

Use this API to update the set of contained Intrusion Rules by an Intrusion Rule Group

Data Parameters

Parameter Required Type Description
addRuleReferences False [object] A list of rule references that will be added to the IntrusionRuleGroup
Allowed types are: [IntrusionRule]
deleteRuleReferences False [object] A list of rule references that will be removed from the IntrusionRuleGroup
Allowed types are: [IntrusionRule]
type True string A UTF8 string, all letters lower-case, that represents the class-type. This corresponds to the class name.

Path Parameters

Parameter Required Type Description
objId True string

Example

- name: Execute 'addIntrusionGroupRuleUpdate' operation
  ftd_configuration:
    operation: "addIntrusionGroupRuleUpdate"
    data:
        addRuleReferences: "{{ add_rule_references }}"
        deleteRuleReferences: "{{ delete_rule_references }}"
        type: "{{ type }}"
    path_params:
        objId: "{{ obj_id }}"