hitachivantara.vspone_object.oneobject_node.hv_storage_components_facts module – Get storage components from VSP One Object
Note
This module is part of the hitachivantara.vspone_object collection (version 1.0.0).
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 hitachivantara.vspone_object.
You need further requirements to be able to use this module,
see Requirements for details.
To use it in a playbook, specify: hitachivantara.vspone_object.oneobject_node.hv_storage_components_facts.
New in hitachivantara.vspone_object 1.0.0
Synopsis
- This module queries storage components from Hitachi VSP One Object. 
Requirements
The below requirements are needed on the host that executes this module.
- python >= 3.7 
Parameters
| Parameter | Comments | 
|---|---|
| Information required to establish a connection to the system. | |
| Cluster name of the system. | |
| Interval between retries of an HTTP request. | |
| Number of times to retry an HTTP request. | |
| Timeout for HTTP requests. | |
| Id for authentication. | |
| Secret for authentication. | |
| Username for authentication. | |
| Password for authentication. | |
| Region of the system. | |
| SSL configuration. | |
| Path to the CA certificates file. Default:  | |
| Path to the CA certificate file. Default:  | |
| Whether to check the hostname. Choices: 
 | |
| Path to the client certificate file. Default:  | |
| Path to the client key file. Default:  | |
| SSL cipher to use. Default:  | |
| SSL version to use. Default:  | |
| Whether to validate SSL certificates. Choices: 
 | |
| Storage component fact module spec | |
| Type of query to perform on storage components. | 
Attributes
| Attribute | Support | Description | 
|---|---|---|
| Support: full | Determines if the module should run in check mode. | 
Examples
- name: Get storage components module
  hosts: localhost
  gather_facts: false
  vars_files:
    - connection_setting.yml
  vars:
    connection_info:
      http_request_timeout: "{{ http_request_timeout }}"
      http_request_retry_times: "{{ http_request_retry_times }}"
      http_request_retry_interval_seconds: "{{ http_request_retry_interval_seconds }}"
      ssl: "{{ ssl }}"
      cluster_name: "{{ cluster_name }}"
      region: "{{ region }}"
      oneobject_node_username: "{{ oneobject_node_username }}"
      oneobject_node_userpass: "{{ oneobject_node_userpass }}"
      oneobject_node_client_id: "{{ oneobject_node_client_id }}"
      oneobject_node_client_secret: "{{ oneobject_node_client_secret }}"
  tasks:
    - name: Get storage components
      hitachivantara.vspone_object.oneobject_node.hv_storage_components_facts:
        connection_info: "{{ connection_info }}"
      register: output_variable
Returned Facts
Facts returned by this module are added/updated in the hostvars host facts and can be referenced by name just like any other host fact. They do not need to be registered in order to use them.
| Key | Description | 
|---|---|
| List of storage components with their attributes. Returned: success | |
| The ID of the storage component. Returned: success Sample:  | |
| The storage capacities of the storage component. Returned: success | |
| The total number of unused bytes on your S3 component. Returned: success Sample:  | |
| Available capacity in human-readable format. Returned: success Sample:  | |
| The total number of bytes on your S3 component. Returned: success Sample:  | |
| Total capacity in human-readable format. Returned: success Sample:  | |
| The total number of used bytes on your S3 component. Returned: success Sample:  | |
| Used capacity in human-readable format. Returned: success Sample:  | |
| The percentage of total capacity usage at which point a warning message is generated. Returned: success Sample:  | |
| Warning threshold capacity in human-readable format. Returned: success Sample:  | |
| The id of storage class assigned to the storage component in Kubernetes. Returned: success Sample:  | |
| The storage component configuration values. Returned: success | |
| The AWS Signature Version for authenticating all interactions with Amazon S3. Returned: success Sample:  | |
| The name of the bucket. Returned: success Sample:  | |
| The connection time to live (TTL) for a request. Returned: success Sample:  | |
| The URL of the storage component back-end host domain. Returned: success Sample:  | |
| The name of the storage component. Returned: success Sample:  | |
| The management system IP address or fully qualified domain name. Returned: success Sample:  | |
| The communication protocol for MAPI requests. Returned: success Sample:  | |
| The maximum number of connections for the storage component. Returned: success Sample:  | |
| The HTTP port of the back-end system. Returned: success Sample:  | |
| The S3 region. Returned: success Sample:  | |
| The site affiliation details for the storage component. Returned: success | |
| The unique identifier of the site affiliation. Returned: success Sample:  | |
| The timeout value for reading from a connected socket. Returned: success Sample:  | |
| The current state of the storage component. Returned: success Sample:  | |
| The Uniform Resource Identifier (URI) schema used when accessing the resource. Returned: success Sample:  | |
| Whether to use path-style addressing for the storage component. Returned: success Sample:  | |
| Whether to use a proxy for the storage component. Returned: success Sample:  | |
| Custom metadata for the storage component. Returned: success Sample:  | |
| The unique identifier of the storage fault domain. Returned: success Sample:  | |
| The type of the storage component. Returned: success Sample:  | 
