racampos.dnac.sda_virtual_network_ip_pool (0.0.1) — module

Manage SdaVirtualNetworkIpPool objects of Sda

| "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

Delete IP Pool from SDA Virtual Network.

Get IP Pool from SDA Virtual Network.

Add IP Pool in SDA Virtual Network.


Requirements

Usage examples

  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: delete_ip_pool_from_sda_virtual_network
  cisco.dnac.sda_virtual_network_ip_pool:
    state: delete  # required
    ip_pool_name: SomeValue  # string, required
    virtual_network_name: SomeValue  # string, required
  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
  
- name: get_ip_pool_from_sda_virtual_network
  cisco.dnac.sda_virtual_network_ip_pool:
    state: query  # required
    ip_pool_name: SomeValue  # string, required
    virtual_network_name: SomeValue  # string, required
  register: query_result
  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
  
- name: add_ip_pool_in_sda_virtual_network
  cisco.dnac.sda_virtual_network_ip_pool:
    state: create  # required
    payload:  # required
    - virtualNetworkName: SomeValue  # string
      ipPoolName: SomeValue  # string
      trafficType: SomeValue  # string
      authenticationPolicyName: SomeValue  # string
      scalableGroupName: SomeValue  # string
      isL2FloodingEnabled: True  # boolean
      isThisCriticalPool: True  # boolean
      poolType: SomeValue  # string

Inputs

    
payload:
    description:
    - An object to send in the Request body.
    - Required for state create.
    elements: dict
    suboptions:
      authenticationPolicyName:
        description:
        - It is the sda virtual network ip pool's authenticationPolicyName.
        type: str
      ipPoolName:
        description:
        - It is the sda virtual network ip pool's ipPoolName.
        type: str
      isL2FloodingEnabled:
        description:
        - It is the sda virtual network ip pool's isL2FloodingEnabled.
        type: bool
      isThisCriticalPool:
        description:
        - It is the sda virtual network ip pool's isThisCriticalPool.
        type: bool
      poolType:
        description:
        - It is the sda virtual network ip pool's poolType.
        type: str
      scalableGroupName:
        description:
        - It is the sda virtual network ip pool's scalableGroupName.
        type: str
      trafficType:
        description:
        - It is the sda virtual network ip pool's trafficType.
        type: str
      virtualNetworkName:
        description:
        - It is the sda virtual network ip pool's virtualNetworkName.
        type: str
    type: list

ip_pool_name:
    description:
    - IpPoolName query parameter.
    required: true
    type: str

virtual_network_name:
    description:
    - VirtualNetworkName query parameter.
    required: true
    type: str

Outputs

add_ip_pool_in_sda_virtual_network:
  contains: null
  description:
    description: Description, property of the response body.
    returned: success
    sample: <description>
    type: str
  executionStatusUrl:
    description: Execution Status Url, property of the response body.
    returned: success
    sample: <executionstatusurl>
    type: str
  returned: success
  status:
    description: Status, property of the response body.
    returned: success
    sample: <status>
    type: str
  type: dict
delete_ip_pool_from_sda_virtual_network:
  contains: null
  description:
    description: Description, property of the response body.
    returned: success
    sample: <description>
    type: str
  executionStatusUrl:
    description: Execution Status Url, property of the response body.
    returned: success
    sample: <executionstatusurl>
    type: str
  returned: success
  status:
    description: Status, property of the response body.
    returned: success
    sample: <status>
    type: str
  type: dict
get_ip_pool_from_sda_virtual_network:
  authenticationPolicyName:
    description: Authentication Policy Name, property of the response body.
    returned: always
    sample: <authenticationpolicyname>
    type: str
  contains: null
  description:
    description: Description, property of the response body.
    returned: always
    sample: <description>
    type: str
  ipPoolName:
    description: Ip Pool Name, property of the response body.
    returned: always
    sample: <ippoolname>
    type: str
  isL2FloodingEnabled:
    description: IsL2FloodingEnabled, property of the response body.
    returned: always
    sample: false
    type: bool
  isThisCriticalPool:
    description: IsThisCriticalPool, property of the response body.
    returned: always
    sample: false
    type: bool
  returned: always
  scalableGroupName:
    description: Scalable Group Name, property of the response body.
    returned: always
    sample: <scalablegroupname>
    type: str
  status:
    description: Status, property of the response body.
    returned: always
    sample: <status>
    type: str
  trafficType:
    description: Traffic Type, property of the response body.
    returned: always
    sample: <traffictype>
    type: str
  type: dict
  virtualNetworkName:
    description: Virtual Network Name, property of the response body.
    returned: always
    sample: <virtualnetworkname>
    type: str

See also