cisco.ise.deployment_info – Information module for Deployment

Note

This plugin is part of the cisco.ise collection (version 0.0.9).

To install it use: ansible-galaxy collection install cisco.ise.

To use it in a playbook, specify: cisco.ise.deployment_info.

New in version 1.0.0: of cisco.ise

Synopsis

  • Get all Deployment.

Note

This module has a corresponding action plugin.

Requirements

The below requirements are needed on the host that executes this module.

  • ciscoisesdk

Parameters

Parameter Choices/Defaults Comments
timeout
float
How long to wait for the server to send data before giving up.

See Also

See also

cisco.ise.plugins.module_utils.definitions.deployment

The official documentation on the cisco.ise.plugins.module_utils.definitions.deployment module.

Deployment reference

Complete reference of the Deployment object model.

Examples

- name: Get all Deployment
  cisco.ise.deployment_info:
    ise_hostname: "{{ise_hostname}}"
    ise_username: "{{ise_username}}"
    ise_password: "{{ise_password}}"
    ise_verify: "{{ise_verify}}"
    timeout: 300
  register: result

Return Values

Common return values are documented here, the following are the fields unique to this module:

Key Returned Description
ise_response
dictionary
always
A dictionary or list with the response returned by the Cisco ISE Python SDK

Sample:
{ "networkAccessInfo": { "deploymentID": "string", "nodeList": { "nodeAndScope": [ { "content": [ { "name": "string", "declaredType": "string", "scope": "string", "value": { "ndghierarchyMap": "string", "ndgheierarchyNADMap": "string", "policyLineCount": 0, "localIdentityNonAdminUserCount": 0, "restIDInfo": [ { "restIDType": [ "string" ], "restidcount": 0 } ], "odbcInfo": [ { "odbctype": [ "string" ], "odbccount": 0 } ], "rsaidstoreCount": 0, "radiusidstoreCount": 0, "adauthStoreCount": 0, "ldapidstoreCount": 0, "activeVLANCount": 0, "activedACLCount": 0 }, "nil": true, "globalScope": true, "typeSubstituted": true } ] } ] }, "sdaVNs": [ "string" ], "trustSecControl": "string", "radius3RdParty": [ "string" ] }, "profilerInfo": { "deploymentID": "string", "nodeList": { "node": [ { "profiles": { "profile": [ "string" ], "customProfilesCount": 0, "endpointTypes": "string", "totalProfilesCount": 0, "uniqueEndpointsCount": 0, "unknownEndpointsCount": 0, "totalEndpointsCount": 0, "unknownEndpointsPercentage": 0 }, "onlineSubscriptionEnabled": true, "lastAppliedFeedDateTime": "string", "scope": "string" } ] } }, "deploymentInfo": { "deploymentID": "string", "nodeList": { "nodeAndNodeCountAndCountInfo": [ { "name": "string", "declaredType": "string", "scope": "string", "value": { "content": [ { "name": "string", "declaredType": "string", "scope": "string", "value": { "fromDate": "string", "toDate": "string", "total": "string", "free": "string", "percent": "string", "fileSystem": [ { "name": "string", "total": "string", "used": "string", "available": "string", "percent": "string", "mountPoint": "string" } ], "loadAvgOne": "string", "loadAvgFive": "string", "loadAvgFifteen": "string", "content": [ { "name": "string", "declaredType": "string", "scope": "string", "value": true, "nil": true, "globalScope": true, "typeSubstituted": true } ] }, "nil": true, "globalScope": true, "typeSubstituted": true } ], "fromDate": "string", "toDate": "string", "currentPostureEndptCount": 0, "currentGuestUserCount": 0, "currentMDMEndPtCount": 0, "currentPxGridClientCount": 0 }, "nil": true, "globalScope": true, "typeSubstituted": true } ] }, "fipsstatus": "string" }, "nadInfo": { "deploymentID": "string", "nodeList": { "nodeAndScope": [ { "content": [ { "name": "string", "declaredType": "string", "scope": "string", "value": { "name": "string", "isCiscoProvided": true, "isDefProfile": true, "isTacacsSupported": true, "isRadiusSupported": true, "isTrustSecSupported": true, "activeNADCount": 0, "totalNADCount": 0 }, "nil": true, "globalScope": true, "typeSubstituted": true } ] } ] }, "nadcountInfo": { "totalActiveNADCount": 0 } }, "mdmInfo": { "activeMdmServersCount": "string", "activeDesktopMdmServersCount": "string", "activeMobileMdmServersCount": "string", "deploymentID": "string", "nodeList": { "nodeAndScope": [ { "content": [ "string" ] } ] } }, "licensesInfo": { "deploymentID": "string", "nodeList": { "nodeAndScope": [ { "content": [ { "name": "string", "declaredType": "string", "scope": "string", "value": { "serviceTypes": "string", "count": 0, "remainingDays": 0, "fileName": "string", "isExpired": true, "isEvaluation": true, "isWiredEnabled": true, "term": 0, "primaryUDI": "string", "secondaryUDI": "string" }, "nil": true, "globalScope": true, "typeSubstituted": true } ] } ] } }, "postureInfo": { "content": [ { "name": "string", "declaredType": "string", "scope": "string", "value": 0, "nil": true, "globalScope": true, "typeSubstituted": true } ] }, "kongInfo": { "deploymentID": "string", "nodeList": { "node": [ "string" ] } } }


Authors

  • Rafael Campos (@racampos)