Skip to main content

restorable_mongodb_resources

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

Overview

Namerestorable_mongodb_resources
TypeResource
Idazure.cosmos_db.restorable_mongodb_resources

Fields

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

NameAccessible byRequired ParamsDescription
listSELECTinstanceId, location, subscriptionIdReturn a list of database and collection 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 examples

Return a list of database and collection 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_mongodb_resources
WHERE instanceId = '{{ instanceId }}'
AND location = '{{ location }}'
AND subscriptionId = '{{ subscriptionId }}';