addURLObject

The addURLObject operation handles configuration related to URLObject model. 

Data Parameters

Parameter Required Type Description
name False string An string represents the name of 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)
url False string An string value containing the URL address
Field level constraints: cannot be blank or empty, length must be between 0 and 400 (inclusive), cannot have HTML. (Note: Additional constraints might exist)
type False string A UTF8 string, all letters lower-case, that represents the class-type. This corresponds to the class name.

Example

- name: Execute 'addURLObject' operation
  ftd_configuration:
    operation: "addURLObject"
    data:
        name: "{{ name }}"
        description: "{{ description }}"
        url: "{{ url }}"
        type: "{{ type }}"