cassandra_clusters_backups
Creates, updates, deletes, gets or lists a cassandra_clusters_backups
resource.
Overview
Name | cassandra_clusters_backups |
Type | Resource |
Id | azure.cosmos_db.cassandra_clusters_backups |
Fields
Name | Datatype | Description |
---|---|---|
backupExpiryTimestamp | string | The time at which the backup will expire. |
backupId | string | The unique identifier of backup. |
backupStartTimestamp | string | The time at which the backup process begins. |
backupState | string | The current state of the backup. |
backupStopTimestamp | string | The time at which the backup process ends. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | backupId, clusterName, resourceGroupName, subscriptionId | Get the properties of an individual backup of this cluster that is available to restore. |
list | SELECT | clusterName, resourceGroupName, subscriptionId | List the backups of this cluster that are available to restore. |
SELECT
examples
List the backups of this cluster that are available to restore.
SELECT
backupExpiryTimestamp,
backupId,
backupStartTimestamp,
backupState,
backupStopTimestamp
FROM azure.cosmos_db.cassandra_clusters_backups
WHERE clusterName = '{{ clusterName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';