ibm.storage_virtualize.ibm_svc_manage_sra module – This module manages remote support assistance configuration on IBM Storage Virtualize family systems
Note
This module is part of the ibm.storage_virtualize collection (version 2.7.4).
You might already have this collection installed if you are using the ansible package.
It is not included in ansible-core.
To check whether it is installed, run ansible-galaxy collection list.
To install it, use: ansible-galaxy collection install ibm.storage_virtualize.
To use it in a playbook, specify: ibm.storage_virtualize.ibm_svc_manage_sra.
New in ibm.storage_virtualize 1.7.0
Synopsis
- Ansible interface to manage ‘chsra’ support remote assistance command. 
Parameters
| Parameter | Comments | 
|---|---|
| The hostname or management IP of the Storage Virtualize system. | |
| Domain for the Storage Virtualize system. Valid when hostname is used for the parameter clustername. | |
| Path of debug log file. | |
| Specifies the list of unique names for the support center or proxy to be defined. Required when support=remote, to enable remote support assistance. | |
| REST API password for the Storage Virtualize system. The parameters username and password are required if not using token to authenticate a user. | |
| Specifies the list of IP addresses or fully qualified domain names for the new support center or proxy server. Required when support=remote and state=enabled, to enable support remote assistannce. | |
| Specifies the list of port numbers for the new support center or proxy server. Required when support=remote and state=enabled, to enable support remote assistannce. | |
| Enables ( Choices: 
 | |
| Specifies the support assistance through  Choices: 
 | |
| The authentication token to verify a user on the Storage Virtualize system. To generate a token, use the ibm.storage_virtualize.ibm_svc_auth module. | |
| REST API username for the Storage Virtualize system. The parameters username and password are required if not using token to authenticate a user. | |
| Validates certification. Choices: 
 | 
Notes
Note
- This module supports - check_mode.
Examples
- name: Enable support remote assistance
  ibm.storage_virtualize.ibm_svc_manage_sra:
    clustername: "{{ clustername }}"
    domain: "{{ domain }}"
    username: "{{ username }}"
    password: "{{ password }}"
    log_path: "{{ log_path }}"
    support: remote
    state: enabled
    name:
      - proxy_1
      - proxy_2
      - proxy_3
    sra_ip:
      - '0.0.0.0'
      - '1.1.1.1'
      - '2.1.2.2'
    sra_port:
      - 8888
      - 9999
      - 8800
- name: Disable support remote assistance
  ibm.storage_virtualize.ibm_svc_manage_sra:
    clustername: "{{ clustername }}"
    domain: "{{ domain }}"
    username: "{{ username }}"
    password: "{{ password }}"
    log_path: "{{ log_path }}"
    support: remote
    state: disabled
    name:
      - proxy_1
      - proxy_2
      - proxy_3
