New in version 2.7.
Parameter | Choices/Defaults | Comments |
---|---|---|
data |
Key-value pairs that should be sent as body parameters in a REST API call
|
|
filters |
Key-value dict that represents equality filters. Every key is a property name and value is its desired value. If multiple filters are present, they are combined with logical operator AND.
|
|
operation
required |
The name of the operation to execute. Commonly, the operation starts with 'add', 'edit', 'get' or 'delete' verbs, but can have an arbitrary name too.
|
|
path_params |
Key-value pairs that should be sent as path parameters in a REST API call.
|
|
query_params |
Key-value pairs that should be sent as query parameters in a REST API call.
|
|
register_as |
Specifies Ansible fact name that is used to register received response from the FTD device.
|
- name: Create a network object
ftd_configuration:
operation: "addNetworkObject"
data:
name: "Ansible-network-host"
description: "From Ansible with love"
subType: "HOST"
value: "192.168.2.0"
dnsResolution: "IPV4_AND_IPV6"
type: "networkobject"
isSystemDefined: false
register_as: "hostNetwork"
- name: Delete the network object
ftd_configuration:
operation: "deleteNetworkObject"
path_params:
objId: "{{ hostNetwork['id'] }}"
Common return values are documented here, the following are the fields unique to this module:
Key | Returned | Description |
---|---|---|
response
dict
|
success |
HTTP response returned from the API call.
|
This module is flagged as preview which means that it is not guaranteed to have a backwards compatible interface.
For more information about Red Hat’s support of this module, please refer to this Knowledge Base article
Hint
If you notice any issues in this documentation you can edit this document to improve it.