Veritas CloudPoint Administrator's Guide
- Getting started with CloudPoint
- Section I. Installing and configuring CloudPoint
- Preparing for installation
- Deploying CloudPoint
- Deploying CloudPoint in the AWS cloud
- Using plug-ins to discover assets
- Configuring off-host plug-ins
- AWS plug-in configuration notes
- Google Cloud Platform plug-in configuration notes
- Microsoft Azure plug-in configuration notes
- HPE RMC plug-in configuration notes
- NetApp plug-in configuration notes
- Hitachi plug-in configuration notes
- InfiniBox plug-in configuration notes
- About CloudPoint plug-ins and assets discovery
- Configuring the on-host agents and plug-ins
- Oracle plug-in configuration notes
- Protecting assets with CloudPoint's agentless feature
- Preparing for installation
- Section II. Configuring users
- Section III. Protecting and managing data
- User interface basics
- Indexing and classifying your assets
- Protecting your assets with policies
- Tag-based asset protection
- Replicating snapshots for added protection
- Managing your assets
- About snapshot restore
- Single file restore requirements and limitations
- Additional steps required after a SQL Server snapshot restore
- Monitoring activities with notifications and the job log
- Protection and disaster recovery
- Section IV. Maintaining CloudPoint
- CloudPoint logging
- Troubleshooting CloudPoint
- Working with your CloudPoint license
- Managing CloudPoint agents and plug-ins
- Upgrading CloudPoint
- Uninstalling CloudPoint
- Section V. Reference
Supported CloudPoint operations on Hitachi arrays
You can perform the following CloudPoint operations on the supported Hitachi storage arrays that are registered with Hitachi Configuration Manager (HCM):
Table: Supported CloudPoint operations on Hitachi arrays
CloudPoint operation | Description |
---|---|
Discover assets | CloudPoint discovers all the Logical Devices (LDEV) created on the storage array. The primary LDEV objects appear under disk assets on the CloudPoint UI dashboard. The secondary LDEV objects that are part of a Thin Image (TI) pair appear under snapshots on the UI dashboard. One or more LDEV objects are grouped in a logical entity called as a pool. For the CloudPoint Hitachi plug-in to work, you must create a pool named |
Create snapshot | CloudPoint takes a snapshot of all the LDEV objects that are attached to a hostgroup. When CloudPoint takes a snapshot, it performs the following actions:
|
Delete snapshot | When CloudPoint deletes a snapshot, it performs the following actions:
|
Restore snapshot | CloudPoint performs a restore operation on a thin image snapshot of an LDEV. All the data in the primary LDEV is overwritten by the data from the secondary LDEV. |
Export snapshot | When a snapshot export operation is triggered, CloudPoint searches for the target host based on the world wide name (WWN) or the iSCSI Qualified Name (IQN) specified in the export request. After the host is identified on the storage array, CloudPoint updates the path attribute of the secondary LDEV with the target host where the snapshot is to be exported. Once the target host is added to the secondary LDEV host ports, the exported snapshot is immediately visible on the target host. |
Deport snapshot | When a snapshot deport operation is triggered, CloudPoint removes the target host from the secondary LDEV path attribute. Once the target host entry is removed from the secondary LDEV host ports, the exported snapshot is no longer visible on the target host and the deport operation is complete. |
Consider the following when you configure the Hitachi plug-in:
When you delete snapshots using CloudPoint, only the snapshots that are managed by CloudPoint are available for deletion. You cannot use CloudPoint to delete snapshots that are not created using CloudPoint.
The export operation is supported using the following protocols:
Fibre Channel (FC)
Internet Small Computer Systems Interface (iSCSI)
The CloudPoint user interface (UI) does not support running the snapshot export and deport operations.
Use the following CloudPoint APIs to perform these operations:
(POST) /v3/assets/<disk-ID>/snapshots/<snap-id>/exports/ (DELETE) /v3/assets/<disk-ID>/snapshots/<snap-id>/exports/<export-ID>
Here are some sample cURL commands:
For Export:
curl -H "Content-Type: application/json" -H "Authorization: Bearer <token> -X POST -d '{"host-name":"targethost", "protocol":"<fc> or <iscsi>", "port":"<wwn of targethost>"}' -k https://localhost/cloudpoint/api/v3/assets/<disk-ID>/snapshots/<snap-id>/exports/
For Deport:
curl -H "Content-Type: application/json" -H "Authorization: Bearer <token>" -X DELETE -k https://localhost/cloudpoint/api/v3/assets/<disk-id>/snapshots/<snap-id>/exports/<export-id>
You can access the CloudPoint REST APIs using Swagger.