hitachivantara.vspone_block.vsp.hv_vsp_one_snapshot_group_facts module – Retrieves snapshot group information from Hitachi VSP One storage systems.

Note

This module is part of the hitachivantara.vspone_block collection (version 4.4.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_block. You need further requirements to be able to use this module, see Requirements for details.

To use it in a playbook, specify: hitachivantara.vspone_block.vsp.hv_vsp_one_snapshot_group_facts.

New in hitachivantara.vspone_block 4.4.0

Synopsis

Requirements

The below requirements are needed on the host that executes this module.

  • python >= 3.9

Parameters

Parameter

Comments

connection_info

dictionary / required

Information required to establish a connection to the storage system.

address

string / required

IP address or hostname of the storage system.

api_token

string

Token used to operate on locked resources.

password

string

Password for authentication. This is a required field.

username

string

Username for authentication. This is a required field.

spec

dictionary

Query parameters for retrieving snapshot group information.

include_snapshots

boolean

When set to true, includes detailed information about individual snapshots within each snapshot group.

Choices:

  • false ← (default)

  • true

snapshot_group_name

string

Snapshot group name. Information about the snapshot group that is a perfect match with the specified value is obtained.

Attributes

Attribute

Support

Description

check_mode

Support: full

Specifies whether the module operates in check mode.

Examples

- name: Get snapshot groups with specific snapshot group name
  hitachivantara.vspone_block.vsp.hv_vsp_one_snapshot_group_facts:
    connection_info:
      address: vsp.company.com
      username: "admin"
      password: "password"
    spec:
      snapshot_group_name: "test_sp_group"

- name: Get all snapshot groups with detailed snapshot information
  hitachivantara.vspone_block.vsp.hv_vsp_one_snapshot_group_facts:
    connection_info:
      address: vsp.company.com
      username: "admin"
      password: "password"
    spec:
      include_snapshots: true

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

snapshots

list / elements=dictionary

List of snapshot groups retrieved from the storage system.

Returned: always

name

string

Name of the snapshot group.

Returned: success

Sample: "Thin-AnsibleAuto222303"

snapshots

list / elements=dictionary

List of snapshots within the snapshot group.

Returned: success

master_volume_id

integer

Master volume ID of the snapshot.

Returned: success

Sample: 8009

snapshot_id

integer

Snapshot ID. The mirror unit number is obtained.

Returned: success

Sample: 41

Authors

  • Hitachi Vantara LTD (@hitachi-vantara)