racampos.dnac.wireless_ap_provision (0.0.1) — module

Manage WirelessApProvision objects of Wireless

| "added in version" 1.0 of racampos.dnac"

Authors: first last (@GitHubID)

preview | supported by community

This plugin has a corresponding action plugin.

Install collection

Install with ansible-galaxy collection install racampos.dnac:==0.0.1


Add to requirements.yml

  collections:
    - name: racampos.dnac
      version: 0.0.1

Description

Access Point Provision and ReProvision.


Requirements

Usage examples

  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: ap_provision_and_re_provision
  cisco.dnac.wireless_ap_provision:
    state: create  # required
    payload:  # required
    - executionId: SomeValue  # string
      executionUrl: SomeValue  # string
      message: SomeValue  # string

Inputs

    
payload:
    description:
    - An object to send in the Request body.
    elements: dict
    required: true
    suboptions:
      executionId:
        description:
        - It is the wireless ap provision's executionId.
        type: str
      executionUrl:
        description:
        - It is the wireless ap provision's executionUrl.
        type: str
      message:
        description:
        - It is the wireless ap provision's message.
        type: str
    type: list

Outputs

ap_provision_and_re_provision:
  contains: null
  description: Access Point Provision and ReProvision.
  executionId:
    description: Execution Id, property of the response body.
    returned: success
    sample: <executionid>
    type: str
  executionUrl:
    description: Execution Url, property of the response body.
    returned: success
    sample: <executionurl>
    type: str
  provisionTasks:
    contains:
      failure:
        contains:
          failureReason:
            description: It is the wireless ap provision's failureReason.
            returned: success
            sample: <failurereason>
            type: str
          taskId:
            description: It is the wireless ap provision's taskId.
            returned: success
            sample: aeed229047801200e0ef563dbb9a71c2
            type: str
          taskUrl:
            description: It is the wireless ap provision's taskUrl.
            returned: success
            sample: <taskurl>
            type: str
        description: It is the wireless ap provision's failure.
        returned: success
        type: dict
      success:
        contains:
          taskId:
            description: It is the wireless ap provision's taskId.
            returned: success
            sample: aeed229047801200e0ef563dbb9a71c2
            type: str
          taskUrl:
            description: It is the wireless ap provision's taskUrl.
            returned: success
            sample: <taskurl>
            type: str
        description: It is the wireless ap provision's success.
        returned: success
        type: list
    description: Provision Tasks, property of the response body.
    returned: success
    type: dict
  returned: success
  type: dict

See also