Skip to main content

restorable_sql_resources

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

Overview

Namerestorable_sql_resources
TypeResource
Idazure.cosmos_db.restorable_sql_resources

Fields

The following fields are returned by SELECT queries:

The operation completed successfully.

NameDatatypeDescription
idstringThe unique resource identifier of the ARM resource.
namestringThe name of the ARM resource.
collectionNamesarrayThe names of the collections available for restore.
databaseNamestringThe name of the database available for restore.
typestringThe type of Azure resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectsubscriptionId, location, instanceIdrestoreLocation, restoreTimestampInUtcReturn a list of database and container combo that exist on the account at the given timestamp and location. This helps in scenarios to validate what resources exist at given timestamp and location. This API requires 'Microsoft.DocumentDB/locations/restorableDatabaseAccounts/.../read' permission.

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
instanceIdstringThe instanceId GUID of a restorable database account.
locationstringCosmos DB region, with spaces between words and each word capitalized.
subscriptionIdstringThe ID of the target subscription.
restoreLocationstringThe location where the restorable resources are located.
restoreTimestampInUtcstringThe timestamp when the restorable resources existed.

SELECT examples

Return a list of database and container combo that exist on the account at the given timestamp and location. This helps in scenarios to validate what resources exist at given timestamp and location. This API requires 'Microsoft.DocumentDB/locations/restorableDatabaseAccounts/.../read' permission.

SELECT
id,
name,
collectionNames,
databaseName,
type
FROM azure.cosmos_db.restorable_sql_resources
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND location = '{{ location }}' -- required
AND instanceId = '{{ instanceId }}' -- required
AND restoreLocation = '{{ restoreLocation }}'
AND restoreTimestampInUtc = '{{ restoreTimestampInUtc }}'
;