hitachivantara.vspone_block.sds_block.hv_sds_block_protection_domain module – Manages protection domains on VSP One SDS Block and Cloud systems.

Note

This module is part of the hitachivantara.vspone_block collection (version 4.5.1).

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.sds_block.hv_sds_block_protection_domain.

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.

connection_type

string

Type of connection to the storage system.

Choices:

  • "direct" ← (default)

password

string / required

Password for authentication. This is a required field.

username

string / required

Username for authentication. This is a required field.

spec

dictionary / required

Specification for the protection domain settings.

async_processing_resource_usage_rate

string

The resource usage rate for asynchronous processing choices are very_high, high, middle, low.

id

string

The ID of the protection domain.

state

string

The desired state of the protection domain.

Choices:

  • "present" ← (default)

  • "resume_drive_data_relocation"

  • "suspend_drive_data_relocation"

Attributes

Attribute

Support

Description

check_mode

Support: none

Determines if the module should run in check mode.

Examples

- name: Configure protection domain settings
  hitachivantara.vspone_block.hv_sds_block_protection_domain:
    connection_info:
      address: "{{ management_address }}"
      username: "{{ management_username }}"
      password: "{{ management_password }}"
    state: present
    spec:
      id: "PD001"
      async_processing_resource_usage_rate: "high"

- name: Resume drive data relocation for protection domain
  hitachivantara.vspone_block.hv_sds_block_protection_domain:
    connection_info:
      address: "{{ management_address }}"
      username: "{{ management_username }}"
      password: "{{ management_password }}"
    state: resume_drive_data_relocation
    spec:
      id: "PD001"

- name: Suspend drive data relocation for protection domain
  hitachivantara.vspone_block.hv_sds_block_protection_domain:
    connection_info:
      address: "{{ management_address }}"
      username: "{{ management_username }}"
      password: "{{ management_password }}"
    state: suspend_drive_data_relocation
    spec:
      id: "PD001"

Return Values

Common return values are documented here, the following are the fields unique to this module:

Key

Description

protection_domain_settings

dictionary

Dictionary containing the discovered properties of the protection domains.

Returned: always

async_processing_resource_usage_rate

string

Usage level of asynchronous processing resources.

Returned: success

Sample: "High"

drive_data_relocation_progress_rate

integer

Progress percentage of data relocation. -1 if not active.

Returned: success

Sample: -1

drive_data_relocation_status

string

Current status of drive data relocation.

Returned: success

Sample: "Stopped"

id

string

Unique identifier for the protection domain.

Returned: success

Sample: "8a047591-7acd-4d61-8b2b-39d703b1ed11"

is_fast_rebuild_enabled

boolean

Whether fast rebuild is enabled for the protection domain.

Returned: success

Sample: true

memory_mode

string

Memory mode used in the protection domain.

Returned: success

Sample: "VolatileMemory"

minimum_memory_size

integer

Minimum memory size in MB.

Returned: success

Sample: 196608

name

string

Name of the protection domain.

Returned: success

Sample: "SC01-PD01"

number_of_fault_domains

integer

The total number of fault domains in the protection domain.

Returned: success

Sample: 1

number_of_fault_sets

integer

The total number of fault sets in the protection domain. -1 if not applicable.

Returned: success

Sample: -1

rebuild_progress_rate

integer

Rebuild progress rate as a percentage.

Returned: success

Sample: 0

rebuild_status

string

Current rebuild status.

Returned: success

Sample: "Error"

redundant_policy

string

Redundancy policy used by the protection domain.

Returned: success

Sample: "Mirroring"

redundant_type

string

Redundancy type used in the protection domain.

Returned: success

Sample: "Duplication"

storage_controller_clustering_policy

string

Clustering policy of the storage controllers.

Returned: success

Sample: "OneRedundantStorageNode"

total_physical_capacity

integer

Total physical capacity in MB.

Returned: success

Sample: 36628608

Authors

  • Hitachi Vantara LTD (@hitachi-vantara)