addURLObjectGroup

The addURLObjectGroup operation handles configuration related to URLObjectGroup model. 

Data Parameters

Parameter Required Type Description
name False string A string that is the name of the URL object.
Field level constraints: cannot be blank or empty, length must be between 0 and 128 (inclusive), cannot have HTML, must match pattern (^[a-zA-Z0-9]$)|(^[a-zA-Z0-9][ a-zA-Z0-9.+-]*[a-zA-Z0-9.+-]$). (Note: Additional constraints might exist)
description False string An string containing the description information of URL object
Field level constraints: length must be between 0 and 200 (inclusive), cannot have HTML. (Note: Additional constraints might exist)
objects False [object] A comma-delimited list of the names of URLObject objects that are part of this group
Allowed types are: [URLObject]
type False string A UTF8 string, all letters lower-case, that represents the class-type. This corresponds to the class name.

Example

- name: Execute 'addURLObjectGroup' operation
  ftd_configuration:
    operation: "addURLObjectGroup"
    data:
        name: "{{ name }}"
        description: "{{ description }}"
        objects: "{{ objects }}"
        type: "{{ type }}"