netapp_eseries.santricity.netapp_e_storage_system – NetApp E-Series Web Services Proxy manage storage arrays¶
Note
This plugin is part of the netapp_eseries.santricity collection (version 1.2.7).
To install it use: ansible-galaxy collection install netapp_eseries.santricity
.
To use it in a playbook, specify: netapp_eseries.santricity.netapp_e_storage_system
.
New in version 2.2: of netapp_eseries.santricity
Synopsis¶
Manage the arrays accessible via a NetApp Web Services Proxy for NetApp E-series storage arrays.
Parameters¶
Examples¶
---
- name: Presence of storage system
netapp_e_storage_system:
ssid: "{{ item.key }}"
state: present
api_url: "{{ netapp_api_url }}"
api_username: "{{ netapp_api_username }}"
api_password: "{{ netapp_api_password }}"
validate_certs: "{{ netapp_api_validate_certs }}"
controller_addresses:
- "{{ item.value.address1 }}"
- "{{ item.value.address2 }}"
with_dict: "{{ storage_systems }}"
when: check_storage_system
Return Values¶
Common return values are documented here, the following are the fields unique to this module:
Key | Returned | Description |
---|---|---|
msg
string
|
always |
State of request
Sample:
Storage system removed.
|
Authors¶
Kevin Hulquest (@hulquest)