cisco.dnac.pnp_global_settings module – Resource module for Pnp Global Settings
Note
This module is part of the cisco.dnac collection (version 6.6.0).
To install it, use: ansible-galaxy collection install cisco.dnac.
You need further requirements to be able to use this module,
see Requirements for details.
To use it in a playbook, specify: cisco.dnac.pnp_global_settings.
New in version 3.1.0: of cisco.dnac
Synopsis
Manage operation update of the resource Pnp Global Settings.
Updates the user’s list of global PnP settings.
Note
This module has a corresponding action plugin.
Requirements
The below requirements are needed on the host that executes this module.
dnacentersdk >= 2.5.4
python >= 3.5
Parameters
Parameter |
Comments |
|---|---|
Pnp Global Settings’s _id. |
|
Pnp Global Settings’s aaaCredentials. |
|
Pnp Global Settings’s password. |
|
Pnp Global Settings’s username. |
|
AcceptEula flag. Choices:
|
|
Pnp Global Settings’s defaultProfile. |
|
Pnp Global Settings’s cert. |
|
Pnp Global Settings’s fqdnAddresses. |
|
Pnp Global Settings’s ipAddresses. |
|
Pnp Global Settings’s port. |
|
Proxy flag. Choices:
|
|
Flag for Cisco DNA Center SDK to enable debugging. Choices:
|
|
The Cisco DNA Center hostname. |
|
The Cisco DNA Center password to authenticate. |
|
The Cisco DNA Center port. Default: 443 |
|
The Cisco DNA Center username to authenticate. Default: “admin” |
|
Flag to enable or disable SSL certificate verification. Choices:
|
|
Informs the SDK which version of Cisco DNA Center to use. Default: “2.3.3.0” |
|
Pnp Global Settings’s savaMappingList. |
|
Pnp Global Settings’s autoSyncPeriod. |
|
Pnp Global Settings’s ccoUser. |
|
Pnp Global Settings’s expiry. |
|
Pnp Global Settings’s lastSync. |
|
Pnp Global Settings’s profile. |
|
Pnp Global Settings’s addressFqdn. |
|
Pnp Global Settings’s addressIpV4. |
|
Pnp Global Settings’s cert. |
|
MakeDefault flag. Choices:
|
|
Pnp Global Settings’s name. |
|
Pnp Global Settings’s port. |
|
Pnp Global Settings’s profileId. |
|
Proxy flag. Choices:
|
|
Pnp Global Settings’s smartAccountId. |
|
Pnp Global Settings’s syncResult. |
|
Pnp Global Settings’s syncList. |
|
Pnp Global Settings’s deviceSnList. |
|
Pnp Global Settings’s syncType. |
|
Pnp Global Settings’s syncMsg. |
|
Pnp Global Settings’s syncResultStr. |
|
Pnp Global Settings’s syncStartTime. |
|
Pnp Global Settings’s syncStatus. |
|
Pnp Global Settings’s tenantId. |
|
Pnp Global Settings’s token. |
|
Pnp Global Settings’s virtualAccountId. |
|
Pnp Global Settings’s taskTimeOuts. |
|
Pnp Global Settings’s configTimeOut. |
|
Pnp Global Settings’s generalTimeOut. |
|
Pnp Global Settings’s imageDownloadTimeOut. |
|
Pnp Global Settings’s tenantId. |
|
Flag for Cisco DNA Center SDK to enable the validation of request bodies against a JSON schema. Choices:
|
|
Pnp Global Settings’s version. |
Notes
Note
SDK Method used are device_onboarding_pnp.DeviceOnboardingPnp.update_pnp_global_settings,
Paths used are put /dna/intent/api/v1/onboarding/pnp-settings,
Does not support
check_modeThe plugin runs on the control node and does not use any ansible connection plugins, but instead the embedded connection manager from Cisco DNAC SDK
The parameters starting with dnac_ are used by the Cisco DNAC Python SDK to establish the connection
See Also
See also
- Cisco DNA Center documentation for Device Onboarding (PnP) UpdatePnPGlobalSettings
Complete reference of the UpdatePnPGlobalSettings API.
Examples
- name: Update all
cisco.dnac.pnp_global_settings:
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
_id: string
aaaCredentials:
password: string
username: string
acceptEula: true
defaultProfile:
cert: string
fqdnAddresses:
- string
ipAddresses:
- string
port: 0
proxy: true
savaMappingList:
- autoSyncPeriod: 0
ccoUser: string
expiry: 0
lastSync: 0
profile:
addressFqdn: string
addressIpV4: string
cert: string
makeDefault: true
name: string
port: 0
profileId: string
proxy: true
smartAccountId: string
syncResult:
syncList:
- deviceSnList:
- string
syncType: string
syncMsg: string
syncResultStr: string
syncStartTime: 0
syncStatus: string
tenantId: string
token: string
virtualAccountId: string
taskTimeOuts:
configTimeOut: 0
generalTimeOut: 0
imageDownloadTimeOut: 0
tenantId: string
version: 0
Return Values
Common return values are documented here, the following are the fields unique to this module:
Key |
Description |
|---|---|
A dictionary or list with the response returned by the Cisco DNAC Python SDK Returned: always Sample: {”_id”: “string”, “aaaCredentials”: {“password”: “string”, “username”: “string”}, “acceptEula”: true, “defaultProfile”: {“cert”: “string”, “fqdnAddresses”: [“string”], “ipAddresses”: [“string”], “port”: 0, “proxy”: true}, “id”: “string”, “savaMappingList”: [{“autoSyncPeriod”: 0, “ccoUser”: “string”, “expiry”: 0, “lastSync”: 0, “profile”: {“addressFqdn”: “string”, “addressIpV4”: “string”, “cert”: “string”, “makeDefault”: true, “name”: “string”, “port”: 0, “profileId”: “string”, “proxy”: true}, “smartAccountId”: “string”, “syncResult”: {“syncList”: [{“deviceSnList”: [“string”], “syncType”: “string”}], “syncMsg”: “string”}, “syncResultStr”: “string”, “syncStartTime”: 0, “syncStatus”: “string”, “tenantId”: “string”, “token”: “string”, “virtualAccountId”: “string”}], “taskTimeOuts”: {“configTimeOut”: 0, “generalTimeOut”: 0, “imageDownloadTimeOut”: 0}, “tenantId”: “string”, “version”: 0} |