Skip to main content

cassandra_clusters_backups

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

Overview

Namecassandra_clusters_backups
TypeResource
Idazure.cosmos_db.cassandra_clusters_backups

Fields

NameDatatypeDescription
backupExpiryTimestampstringThe time at which the backup will expire.
backupIdstringThe unique identifier of backup.
backupStartTimestampstringThe time at which the backup process begins.
backupStatestringThe current state of the backup.
backupStopTimestampstringThe time at which the backup process ends.

Methods

NameAccessible byRequired ParamsDescription
getSELECTbackupId, clusterName, resourceGroupName, subscriptionIdGet the properties of an individual backup of this cluster that is available to restore.
listSELECTclusterName, resourceGroupName, subscriptionIdList 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 }}';