Skip to main content

cloud_hsm_cluster_restore_status

Creates, updates, deletes, gets or lists a cloud_hsm_cluster_restore_status resource.

Overview

Namecloud_hsm_cluster_restore_status
TypeResource
Idazure.hardware_security_modules.cloud_hsm_cluster_restore_status

Fields

The following fields are returned by SELECT queries:

Cloud HSM Cluster Backup Operation status returned

NameDatatypeDescription
propertiesobjectBackup and Restore operation common properties

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, resourceGroupName, cloudHsmClusterName, jobIdGets the restore operation status of the specified Cloud HSM Cluster

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
cloudHsmClusterNamestringThe name of the Cloud HSM Cluster within the specified resource group. Cloud HSM Cluster names must be between 3 and 23 characters in length.
jobIdstringThe id returned as part of the backup request
resourceGroupNamestringThe name of the resource group. The name is case insensitive.
subscriptionIdstring (uuid)The ID of the target subscription. The value must be an UUID.

SELECT examples

Gets the restore operation status of the specified Cloud HSM Cluster

SELECT
properties
FROM azure.hardware_security_modules.cloud_hsm_cluster_restore_status
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND cloudHsmClusterName = '{{ cloudHsmClusterName }}' -- required
AND jobId = '{{ jobId }}' -- required
;