addURLObject

The addURLObject operation handles configuration related to URLObject 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 An string represents the name of URL object
description False string An string containing the description information of URL object
Field level constraints: length must be between 0 and 200 (inclusive). (Note: Additional constraints might exist)
url True string An string value containing the URL address
Field level constraints: cannot be blank or empty, length must be between 0 and 400 (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 'addURLObject' operation
  ftd_configuration:
    operation: "addURLObject"
    data:
        name: "{{ name }}"
        description: "{{ description }}"
        url: "{{ url }}"
        type: "{{ type }}"