| Server IP : 85.214.239.14 / Your IP : 216.73.216.212 Web Server : Apache/2.4.65 (Debian) System : Linux h2886529.stratoserver.net 4.9.0 #1 SMP Mon Sep 30 15:36:27 MSK 2024 x86_64 User : www-data ( 33) PHP Version : 8.2.29 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : OFF Directory : /lib/python3/dist-packages/ansible_collections/cisco/dnac/plugins/modules/ |
Upload File : |
#!/usr/bin/python
# -*- coding: utf-8 -*-
# Copyright (c) 2021, Cisco Systems
# GNU General Public License v3.0+ (see LICENSE or https://www.gnu.org/licenses/gpl-3.0.txt)
DOCUMENTATION = r"""
---
module: global_credential_v2
short_description: Resource module for Global Credential V2
description:
- Manage operations create, update and delete of the resource Global Credential V2.
- >
API to create new global credentials. Multiple credentials of various types can be passed at once. Please refer
sample Request Body for more information.
- Delete a global credential. Only 'id' of the credential has to be passed.
- >
API to update device credentials. Multiple credentials can be passed at once, but only a single credential of a
given type can be passed at once. Please refer sample Request Body for more information.
version_added: '6.7.0'
extends_documentation_fragment:
- cisco.dnac.module
author: Rafael Campos (@racampos)
options:
cliCredential:
description: Global Credential V2's cliCredential.
suboptions:
description:
description: Description.
type: str
enablePassword:
description: Enable Password.
type: str
id:
description: Id.
type: str
password:
description: Password.
type: str
username:
description: Username.
type: str
type: dict
httpsRead:
description: Global Credential V2's httpsRead.
suboptions:
id:
description: Id.
type: str
name:
description: Name.
type: str
password:
description: Password.
type: str
port:
description: Port.
type: int
username:
description: Username.
type: str
type: dict
httpsWrite:
description: Global Credential V2's httpsWrite.
suboptions:
id:
description: Id.
type: str
name:
description: Name.
type: str
password:
description: Password.
type: str
port:
description: Port.
type: int
username:
description: Username.
type: str
type: dict
id:
description: Id path parameter. Global Credential id.
type: str
snmpV2cRead:
description: Global Credential V2's snmpV2cRead.
suboptions:
description:
description: Description.
type: str
id:
description: Id.
type: str
readCommunity:
description: Read Community.
type: str
type: dict
snmpV2cWrite:
description: Global Credential V2's snmpV2cWrite.
suboptions:
description:
description: Description.
type: str
id:
description: Id.
type: str
writeCommunity:
description: Write Community.
type: str
type: dict
snmpV3:
description: Global Credential V2's snmpV3.
suboptions:
authPassword:
description: Auth Password.
type: str
authType:
description: Auth Type.
type: str
description:
description: Description.
type: str
id:
description: Id.
type: str
privacyPassword:
description: Privacy Password.
type: str
privacyType:
description: Privacy Type.
type: str
snmpMode:
description: Snmp Mode.
type: str
username:
description: Username.
type: str
type: dict
requirements:
- dnacentersdk >= 2.5.5
- python >= 3.5
seealso:
- name: Cisco DNA Center documentation for Discovery CreateGlobalCredentialsV2
description: Complete reference of the CreateGlobalCredentialsV2 API.
link: https://developer.cisco.com/docs/dna-center/#!create-global-credentials-v-2
- name: Cisco DNA Center documentation for Discovery DeleteGlobalCredentialV2
description: Complete reference of the DeleteGlobalCredentialV2 API.
link: https://developer.cisco.com/docs/dna-center/#!delete-global-credential-v-2
- name: Cisco DNA Center documentation for Discovery UpdateGlobalCredentialsV2
description: Complete reference of the UpdateGlobalCredentialsV2 API.
link: https://developer.cisco.com/docs/dna-center/#!update-global-credentials-v-2
notes:
- SDK Method used are
discovery.Discovery.create_global_credentials_v2,
discovery.Discovery.delete_global_credential_v2,
discovery.Discovery.update_global_credentials_v2,
- Paths used are
post /dna/intent/api/v2/global-credential,
delete /dna/intent/api/v2/global-credential/{id},
put /dna/intent/api/v2/global-credential,
"""
EXAMPLES = r"""
- name: Update all
cisco.dnac.global_credential_v2:
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
cliCredential:
description: string
enablePassword: string
id: string
password: string
username: string
httpsRead:
id: string
name: string
password: string
port: 0
username: string
httpsWrite:
id: string
name: string
password: string
port: 0
username: string
snmpV2cRead:
description: string
id: string
readCommunity: string
snmpV2cWrite:
description: string
id: string
writeCommunity: string
snmpV3:
authPassword: string
authType: string
description: string
id: string
privacyPassword: string
privacyType: string
snmpMode: string
username: string
- name: Create
cisco.dnac.global_credential_v2:
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
cliCredential:
- description: string
enablePassword: string
password: string
username: string
httpsRead:
- name: string
password: string
port: 0
username: string
httpsWrite:
- name: string
password: string
port: 0
username: string
snmpV2cRead:
- description: string
readCommunity: string
snmpV2cWrite:
- description: string
writeCommunity: string
snmpV3:
- authPassword: string
authType: string
description: string
privacyPassword: string
privacyType: string
snmpMode: string
username: string
- name: Delete by id
cisco.dnac.global_credential_v2:
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
"""
RETURN = r"""
dnac_response:
description: A dictionary or list with the response returned by the Cisco DNAC Python SDK
returned: always
type: dict
sample: >
{
"response": {
"taskId": "string",
"url": "string"
},
"version": "string"
}
"""