netapp.um_info.na_um_aggregates_info (21.8.1) — module

NetApp Unified Manager list aggregates.

| "added in version" 20.5.0 of netapp.um_info"

Authors: NetApp Ansible Team (@carchi8py) <ng-ansibleteam@netapp.com>

preview | supported by certified

Install collection

Install with ansible-galaxy collection install netapp.um_info:==21.8.1


Add to requirements.yml

  collections:
    - name: netapp.um_info
      version: 21.8.1

Description

List Aggregates on AIQUM.


Requirements

Usage examples

  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: List Aggregates
  netapp.um_info.na_um_aggregates_info:
    hostname: "{{ hostname }}"
    username: "{{ username }}"
    password: "{{ password }}"

Inputs

    
hostname:
    description:
    - The hostname or IP address of the Unified Manager instance.
    required: true
    type: str

password:
    description:
    - Password for the specified user.
    required: true
    type: str

username:
    description:
    - username of the Unified Manager instance.
    required: true
    type: str

http_port:
    description:
    - Override the default port (443) with this port
    type: int

max_records:
    description:
    - Maximum number of records retrieved in a single GET request.
    - This module loops on GET requests until all available records are fetched.
    - If absent, AIQUM uses 1000.
    type: int
    version_added: 21.7.0
    version_added_collection: netapp.um_info

feature_flags:
    description:
    - Enable or disable a new feature.
    - This can be used to enable an experimental feature or disable a new feature that
      breaks backward compatibility.
    - Supported keys and values are subject to change without notice.  Unknown keys are
      ignored.
    - trace_apis can be set to true to enable tracing, data is written to /tmp/um_apis.log.
    type: dict
    version_added: 21.7.0
    version_added_collection: netapp.um_info

validate_certs:
    default: true
    description:
    - If set to C(False), the SSL certificates will not be validated.
    - This should only set to C(False) used on personally controlled sites using self-signed
      certificates.
    type: bool

Outputs

records:
  description: Returns list of Aggregates information
  returned: always
  sample:
  - _links:
      self:
        href: '...'
    block_storage:
      hybrid_cache:
        enabled: '...'
        size: '...'
      mirror:
        state: '...'
      primary:
        raid_size: '...'
        raid_type: '...'
    cluster:
      _links:
        self:
          href: '...'
      key: '...'
      name: '...'
      uuid: '...'
    create_time: '...'
    data_encryption:
      software_encryption_enabled: '...'
    key: '...'
    name: '...'
    node:
      _links:
        self:
          href: '...'
      key: '...'
      name: '...'
      uuid: '...'
    snaplock_type: '...'
    space:
      block_storage:
        available: '...'
        size: '...'
        used: '...'
      efficiency:
        logical_used: '...'
        savings: '...'
    state: '...'
    type: '...'
    uuid: '...'
  type: list