addURLObjectGroup
The addURLObjectGroup operation handles configuration related to URLObjectGroup 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 | A string that is the name of the 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) |
|||
| objects | False | [ object ] |
A comma-delimited list of the names of
URLObject
objects that are part of this group
Allowed types are: [ URLObject ] |
|||
| type | True | 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 }}"