cisco.dnac.application_sets – Resource module for Application Sets¶
Note
This plugin is part of the cisco.dnac collection (version 3.1.2).
To install it use: ansible-galaxy collection install cisco.dnac
.
To use it in a playbook, specify: cisco.dnac.application_sets
.
New in version 1.0.0: of cisco.dnac
Synopsis¶
Manage operations create and delete of the resource Application Sets.
Note
This module has a corresponding action plugin.
Parameters¶
Parameter | Choices/Defaults | Comments | |
---|---|---|---|
id
string
|
Id query parameter.
|
||
payload
list
/ elements=string
|
Application Sets's payload.
|
||
name
string
|
Name.
|
See Also¶
See also
- Application Sets reference
Complete reference of the Application Sets object model.
Examples¶
- name: Delete all
cisco.dnac.application_sets:
dnac_host: "{{dnac_host}}"
dnac_username: "{{dnac_username}}"
dnac_password: "{{dnac_password}}"
dnac_verify: "{{dnac_verify}}"
dnac_port: "{{dnac_port}}"
dnac_version: "{{dnac_version}}"
dnac_debug: "{{dnac_debug}}"
state: absent
id: string
- name: Create
cisco.dnac.application_sets:
dnac_host: "{{dnac_host}}"
dnac_username: "{{dnac_username}}"
dnac_password: "{{dnac_password}}"
dnac_verify: "{{dnac_verify}}"
dnac_port: "{{dnac_port}}"
dnac_version: "{{dnac_version}}"
dnac_debug: "{{dnac_debug}}"
state: present
Return Values¶
Common return values are documented here, the following are the fields unique to this module:
Key | Returned | Description |
---|---|---|
dnac_response
dictionary
|
always |
A dictionary or list with the response returned by the Cisco DNAC Python SDK
Sample:
{
"taskId": "string",
"url": "string"
}
|
Authors¶
Rafael Campos (@racampos)